Search Results for 'block'

Results from the Forum
Bogdan B.
tagDiv Staff

Hello,

There seems to be an issue with your install. If I try to access one of the images I get an internal server error.
http://www.janviayurveda.com/wp-content/uploads/2018/01/KV-Chakradhar.jpg
Please check with your host for any blocked theme files and check the media library to make sure the images are present there as well and the demo imported the images properly.

Thanks.

Simion C.
tagDiv Staff

Hi,

So you would like to remove the author name from the big module of big grid 3, that could be done with a code like this
https://www.screencast.com/t/oF3HSHAMZx
Enter it in theme panel->Custom CSS code section
https://www.screencast.com/t/v9NK9k1d9

.td_block_big_grid_3 .td_module_mx5 .td-post-author-name {
display:none;
}

Thanks

Catalin
tagDiv Staff

Hi,

You should simply align to the lest your blockquotes with the following code below ->

.post blockquote p{
text-align: left;
}

Thanks.

ocadmin
Participant
#0

Hello,

How can i remove all of the black boxes that have 0 for comments. I have disabled the comment boxes but they show up still: https://www.southbostontoday.com/category/editorial/

Also where in the theme can I edit the 3 section block on the bottom of the home page that has Editor Picks, Popular Posts, and Popular Category: https://www.southbostontoday.com/

rlaudi
Participant
#0

Hello my site it’s http://www.spazidiascoltocagliari.it/ i want remove from grid (only in first block) author name (in my case it’s admin) how i can costumize it?

emmak
Participant
#0

Hi,

I am still having an issue with the blockquote styling.
I need the paragraphs to show, for the text not to be all caps in both the main and the mobile theme, and be left justified.
I have used the theme panel but I am not getting the results I want.
I am playing around with the css but I cannot make it anything but left justified.

blockquote {
font: 16px italic Georgia, serif;
width:500px;
padding-left: 70px;
padding-bottom: 18px;
padding-right: 10px;
margin: 5px;
text-indent: 23px;
text-align:justify;
}
Please help.
Page here.
http://bit.ly/2D2tIAR

Simion C.
tagDiv Staff

Sorry for misunderstanding, the latest articles section will be displayed if the Pagebuilder + latest articles + pagination is selected.

The page must be set as homepage in order for the design to apply. That is the case for block 15 customization, the design will apply only when the page is set as homepage.

Thanks

Simion C.
tagDiv Staff

Hi,

Seems none of these posts have featured images
https://www.screencast.com/t/VNj4R8nv17lR
Each post needs to have a featured image (or video) set
https://forum.tagdiv.com/featured-image-or-video/
Please try to set images for all of them, and check the homepage after doing this. The theme will create automatically thumbnails and display them on blocks/modules. So there should be thumbnails displayed.

Thanks

Simion C.
tagDiv Staff

Hi,

If there is no featured image set, there should be a placeholder displayed
https://www.screencast.com/t/RWUTAt31
You could hide the module thumbnail for his type of block, to make them look better. A code like this will do that (affects only blocks 4 on the homepage)
https://www.screencast.com/t/rCZfu4uD

.home .td_block_4 .td-module-thumb {
display:none;
}

Also the title and content length can be controlled, for this module here
https://www.screencast.com/t/Dg5InixbHqQp
So you could limit the excerpt length for the modules, they will look better.

Thanks

Bogdan B.
tagDiv Staff

Hello,

Please check the theme panel under block settings-> category tags on modules and blocks.

Thanks.

Bogdan B.
tagDiv Staff

Hello,

You will have to use a plugin that can provide such functionality Unfortunately I cannot make any suggestions. If you want to edit the code directly, you can find it in this file for posts: https://www.screencast.com/t/GG12HYwc and this file for blocks: https://www.screencast.com/t/oN08gIkpNfk

Thank you!

setttse
tagDiv Member

This is a screen capture from the Business demo. It is a Block 15. Copying the shortcodes has given me the correct block, but it has the image in and the styling is different.

What do I need to edit to make block 15 look like this demo?

https://www.screencast.com/users/setttse/folders/Default/media/42c92623-e60b-4624-9649-28df45408702

MaximEvr
Participant
#0

Hello,

Here I have a small problem, I will like deleted the small line which is present between the two block.

How to do ?

screen

gbouquet
Participant
#0

Hello,

Is it possible to change the default thumbnail in a block?
I would like to display the image of size “324 x 160px” (module 2) in block 17 (where there is normally the size “324 x 235 pixels” of modules 3 and 4).

thank you for your reply

MDNM2017
tagDiv Member

Hi Simion,
If I set that all posts have a featured image and I do not have an image, then a shaded box shows up in Block 4. I do not like Blocks 9 and 10 for this website.
Are there any other solutions? Thanks again.

tonima
Participant
#0

I just can’t remove particular elements on my page. When I use tagdiv composer I can edit only some blocks/elements, when I hover over them I get options and also can drag them. But there are few elements on bottom of the page which are actually same like ones above but they can’t be edited/dragged… Even when I try to edit them by using shortcodes it’s not possible because there is no their shortcode.
http://dev.mega-media.hr/ – This is webpage, any everything below second video box seems like can not be edite and also doesn’t have it’s shortcode?

Catalin
tagDiv Staff

Hello marketing20,

You should use the following code if you want to hide the Excerpts and Read More button for block 23.

The code is ->

.td_block_23 .td_module_18 .td-excerpt{
display:none;
}
.td_block_23 .td_module_18 .td-read-more{
display:none;
}

The result is here -> https://www.screencast.com/t/1JKjQju7keJZ

Also, if you want that code to be applied only to desktop version you should place the code in Advanced CSS in the desktop area, like this -> https://www.screencast.com/t/Ij0rMi3kLEQ8

Thanks for the message!

Alin [tagDiv]
tagDiv Staff

Hi,

The css provided above is not correct. The is no display:all property – https://www.w3schools.com/cssref/pr_class_display.asp
And like you can see here the css is not applied – https://www.screencast.com/t/Lwf7kxVUrd
The category tag was is hidden on mobiles for module 14 and it appears on your site because you have removed display:none; from stylesheet file.
I suggest to remove your custom modifications and use this custom css in Theme Panel > Custom Css – https://www.screencast.com/t/vIaNZgxgb

@media (max-width: 767px){
.td_module_14 .td-post-category {
margin-left: 14px;
display: inline-block !important;
}
}

Thanks!

Simion C.
tagDiv Staff

Hi,

This is not a difficult task. First you can view all the demos here
https://demo.tagdiv.com/select_demo/select_demo_newspaper
Only one demo can be installed at a time, choose the one you like and install it in the theme panel
https://forum.tagdiv.com/installing-demos/
You can install it with content, that would be easier
https://www.screencast.com/t/czlLCpztKAoA
Then gradually replace the demo content with your own. Check these helpful tagDiv composer and block settings tutorials in the documentation
https://forum.tagdiv.com/tagdiv-composer-tutorial/
https://forum.tagdiv.com/block-settings-tutorial/
Please let us know if you have further questions, we will try to help you as best as possible.

Thanks

Simion C.
tagDiv Staff

Hi,

That means it will display featured posts. The theme creates a Featured category by default, in which you can assign posts
https://forum.tagdiv.com/featured-posts-2/
Check the filter tab of the grid and choose the filter/sort combination you want
https://forum.tagdiv.com/block-settings-tutorial/

Thanks

Simion C.
tagDiv Staff

Hi,

Some footer templates have predefined content, others are blank
https://forum.tagdiv.com/footer-templates/
Those sections you mention are predefined in the template file, the Editor picks is a block 7 widget that displays featured posts
https://forum.tagdiv.com/featured-posts-2/
The Popular posts is again a block 7 widget, which displays popular posts.
Finally there is a popular category widget
https://www.screencast.com/t/y8g77nVrhs
If you do not want these widgets to appear, select an empty footer template and insert the widgets you want, configured the way you want, in the 3 footer sidebars
https://www.screencast.com/t/EiNKypax

Thanks

Simion C.
tagDiv Staff

Hi,

I believe you are referring to such spaces – https://www.screencast.com/t/eLteZt0r
That will happen because some of the posts seem to not have featured images set. If one post has a featured image the module will display a thumbnail, for others not. This will cause uneven spacing
https://www.screencast.com/t/5PTrAn0Tcf
Either set featured images for all posts that don’t have one, or remove them all maybe. Or use blocks that do not show a thumbnail, like block 9 and 10.

Thanks

marketing20
Participant
#0

I would like to remove the excerpt and Read More from the main Block 24 set on my homepage.(If at all possible, only on desktop)

http://www.paintorthread.com

I’ve guessed adding this to Theme Panel – CSS, but no change

.td_block_23 .td_module_23 .td-excerpt,
.td_block_23 .td_module_23 .td-read-more {
display: none;
}

Monokromdesign
Participant
#0

Hi.

I modified module_14 in order to have the category tag show on mobile


@media
(max-width: 767px)
.td_module_14 .td-post-category {
display: all;
}

In mobile view (small portrait phone) the category tag shows, but it doesn’t align with the heading. Can you supply a css fix?

The site is wefrb.easysite.dk, front page, first block, responsive portrait phone.

Looking forward to hearing from you!

Best regards from Lars

Simion C.
tagDiv Staff

Hi,

That means you have not set a featured image (or video) for the post
https://forum.tagdiv.com/featured-image-or-video/
Each posts needs to have a featured image, only when setting one the theme will create thumbnails to display on blocks/modules
https://forum.tagdiv.com/theme-thumbs/
Please let us know if you have further questions or need help with something.

Thanka

Viewing 25 results - 21,401 through 21,425 (of 39,816 total)