Hi,
To remove the comment count from blocks and modules, go to Theme panel->Block settings and disable it like this – https://www.screencast.com/t/Wfz0d1Nw
Thanks
Hi,
You can try this code, enter it in Theme panel->Custom Css
.td_block_social_counter .td_social_info,
.td_block_social_counter .td_social_info_name {
display: none!important;
}
Result – https://www.screencast.com/t/StqtEgZw
Thanks
Hi,
Try using !important after the color like this – https://www.screencast.com/t/lyPgKbNTxj so it forcibly applies
Another way to do this would be to use an existing class of the menu item, right click the menu item and use your browser inspector – https://www.screencast.com/t/JeMc1rwAC7 and use a code like this
.menu-item-2747 a {
color: white!important;
}
Thanks
Hi,
Try this code for post template 6, enter it in Theme panel->Custom Css
@media (min-width: 767px) {
.td-post-template-6 .td-post-header {
height: 500px;
}
}
Result – https://www.screencast.com/t/yJVVezk3
Thanks
Hi,
I do not see these items on your site so I could provide a more accurate solution, you could try this code and see if it works for you (you can control the footer logo on vertical by modifying the margin-top)
.td-footer-bottom-full .footer-logo-wrap {
margin-top: 20px;
}
.td-footer-bottom-full .footer-social-wrap {
text-align:center!important;
}
.td-footer-bottom-full .footer-text-wrap {
text-align:center!important;
}
Result – https://www.screencast.com/t/xx8DARaaf41
Thanks
Hi,
Please make sure you download the full package from teamforest – https://forum.tagdiv.com/whats-included/ The plugin is located in this path – Newspaper-tf\plugins along with other theme plugins. More about the mobile theme here – https://forum.tagdiv.com/the-mobile-theme/
Thanks
Hi,
Sorry that I misunderstood what you wanted, an example or a screenshot would have helped. If you want to hide it with css on a specific block or module, you can add it’s class before the code like this example
.td_block_12 .td-read-more{
display: none!important;
}
Thanks
Hi,
In the first part of the tutorial is explained how to create a mega menu with sub-categories. First you choose a root menu item (is not a sub-menu) that has no sub-menus – https://www.screencast.com/t/wrCxNzuJtM and make it a mega menu (you need to have created a parent category with sub-categories assigned to it – https://www.screencast.com/t/8XA1Qztia1) – https://www.screencast.com/t/FBDcL7jn
Hope this helps
Thanks
Hi,
The blocks you create will display posts from the category or categories you choose based on the sort order you choose on each block – https://www.screencast.com/t/AQISEmuFP – https://www.screencast.com/t/phNPp42pl8Yv – https://www.screencast.com/t/xIy5Vm92Z1u result – https://www.screencast.com/t/Jl4DpJi0 Also that is the way you can check what posts are currently displaying, by default it’s set to All categories – Latest
All this is explained in this tutorial – https://forum.tagdiv.com/block-settings-tutorial/
I hope that I understood what you want.
Thanks
Hi,
1. First you need to open your page in Visual composer editor and edit the row containing the Video playlist element – https://www.screencast.com/t/pzmKkE6SxHXr set the row to stretch and then go to the Design options tab and set a background color – https://www.screencast.com/t/AphJ6s5D0k and some additional padding or margins if you want to.
2. To remove Latest Articles from your page you must select the default template in page attributes – https://www.screencast.com/t/L17LHiga
Thanks
Hi,
That text can be modified that text in Theme panel->Theme fonts->Footer – https://www.screencast.com/t/JnOXHvnDnp
The text logo inherits the body font, but you can change it using this code, just enter it in Theme panel->Custom Css
.footer-logo-wrap {
font-size: 12px;
}
Result – https://www.screencast.com/t/jWq53p1D6Q
If that is not what you meant about the logo please provide more details.
You can remove the “About Us” by removing it’s translation in Theme panel-> Translations – https://www.screencast.com/t/02OtjgEUEgoR
Thanks
Hi,
Please contact us on our email address at contact@tagdiv.com and provide a link to your site and wp-admin (login information and admin rights) so we can login and investigate. Please also include a link to this topic.
Thanks
Hi,
Please follow this tutorial – https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/ and regenerate your thumbnails and see if that fixes it. The logo is placed on the left in Header style 1 that you are using, you can find all the header styles here – https://forum.tagdiv.com/header-styles/ and choose a different one if you want in Theme panel.
Thanks
Hi,
I meant you can create as many sidebars as you want but yes, you can only select one at a time for any page (pages, categories, posts etc). You can add more ad boxes above the News Category and it will get pushed down, you can make it a dropdown list – https://www.screencast.com/t/WG2nZ7jGC – https://www.screencast.com/t/u1xp642J8 and fill the space with ad boxes, or remove it, whatever you think it’s best.
The code added for the ad on the homepage gets loaded after the theme css style, therefore there is some delay. You could try to move the code directly in the theme style.css if you want, so it loads initially from there and see how it goes.
Thanks
Hi,
I inspected your site but I did not encounter the problem you describe, even after refreshing the page enough times everything seems normal and working properly.
Thanks
Hi,
I don’t fully understand what you are trying to do. You can modify that element by opening your page in Visual composer and editing it there. As for the theme auto update feature please read this tutorial – https://forum.tagdiv.com/how-to-automatically-update-newspaper-theme/
Thanks
Hi,
The code from above center aligns the title text so it fills the column better but it also depends of the length of the words (if they can not fit in the row space they will appear on the second row). By default the title has no alignment, that is one of the differences between the modules that those block use as you can see in the demo – http://demo.tagdiv.com/newspaper/block-9/ – http://demo.tagdiv.com/newspaper/block-10/ of the blocks on one column.
Thanks
Hi,
I’m assuming that you want to hide the author name in search template M1 results page – https://www.screencast.com/t/HxBwxuE3 try this code in Theme panel->Custom Css
.search-results .td_module_1 .td-post-author-name {
display: none;
}
Result – https://www.screencast.com/t/6elOuUeOsB
If this is not what you wanted please provide a screenshot or more detailes about this matter.
Thanks
Hi,
You could use do_shortcode with the code coresponding to those elements from Visual composer – https://www.screencast.com/t/Ya0GDv10Qtxc – https://www.screencast.com/t/VZCJIclofY and adding it in the code, after pagination – https://www.screencast.com/t/zo3RjyNO but it is not guaranteed that these elements will work properly in this situation
<?php echo do_shortcode('insert code here');?>
Result – https://www.screencast.com/t/nWPqcnkmD4
Thanks
Hi,
You can post the link to your website here and we will take a look and try to help you in this matter.
Thanks
Hi,
The sidebar will display the ads everywhere it is set, in per category, in posts general – https://www.screencast.com/t/GS38sCaV – or per post – https://www.screencast.com/t/CGcBE8iRWS
You can create a sidebar with de default ad and a custom ad and set it to a category, then create another sidebar with the same default ad and a custom ad, basically you can have as many custom sidebars as you like.
Also it is recomended to set the sidebar from the primary category of the posts – http://prntscr.com/e0zv8s
In the sidebar you can use the default sidebar ad and the other 5 custom ads – https://forum.tagdiv.com/sidebar-ads/
Thanks
Hi,
1. This a template style 2 post – https://www.screencast.com/t/e0rbRUKl1ZEC and this a post template style 1 post – https://www.screencast.com/t/leMNeHDpIRf – https://www.screencast.com/t/vQspTtI3cBz If you are using Visual composer in posts please note that the editor is meant to be used only in pages – https://forum.tagdiv.com/how-to-use-visual-composer/ and it is not tested in this regard.
2. Those options originate from td_config.php found in the theme folder->includes – https://www.screencast.com/t/bpDkTM8Ygvp
3. Smart list does not affect this in any regard and we had no issues or any user feedback in this matter.
4. You could replace the pagination in other smart-list styles with the one in Smart list style 8 by editing the smart list file – https://www.screencast.com/t/yo8Ikq50ed1 – https://www.screencast.com/t/ZPHwjQBJbyY
5. Try using these clases to customize .td-smart-list-button in some styles or .td-left-smart-list .td-right-smart-list in others but it depends of the smart list style that you use
Example
.td-smart-list-button {
color: yellow;
background-color: red;
}
or
.td-left-smart-list, .td-right-smart-list {
color: yellow;
background-color: red;
}
Thanks
Hi,
To remove the Load more on Block 12 – https://www.screencast.com/t/AAci6JaNuzR you must open your page in Visual composer editor, then go to Block 12 settings – https://www.screencast.com/t/fl9N6rLA5Hs and in the Pagination tab choose a different style or no pagination
Thanks
Hi,
Each block uses different modules, they do not have to correspond to the block numbers (block 9 uses module 8 and block 10 uses module 9) you can get some impression about this in Theme panel->Block settings – https://www.screencast.com/t/DVULMaAiLI or you can check with your browser inspector – https://www.screencast.com/t/AYpQSGRwfto
You could align the title content using this code, enter it in Theme panel->Custom Css
.td_block_9 .td-module-title {
text-align: center;
}
Thanks
Hi,
To create a mega menu with sub-categories first you need to use a root menu item that does not have sub menus – https://www.screencast.com/t/xQxlknKwZx and add a parent category to the menu if you want a mega menu with sub-categories – https://www.screencast.com/t/jaUh3ToKYWhe so you need to create a parent category with sub-categories (assign categories a parent category)- https://www.screencast.com/t/NhTg6B9Zgjuy The result is like the Fashion mega menu item in the demo – http://demo.tagdiv.com/newspaper/
Hope this helps
Thanks