- NewspaperCreate Custom Code with the browser’s Inspector or the Live CSS Box
- NewspaperScroll Animation
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperHow to setup Twitch for Social Counter
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperAutoptimize Plugin – install and configuration
- NewspaperAdding Multiple Authors to Your Articles
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperBig Grid Flex Settings
- NewsmagtagDiv Composer Tutorial
- TutorialsFrom WPBakery to tagDiv Composer
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- TutorialsDefault Block Settings Guide
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
My website cache is not clearing in new theme (newspaper). I did some CSS updates, post content and even new posts are not updating in home page. here is my site: http://mashtips.com
Any suggestion that I can try? This issue started after switching to this new theme? Anything I’m missing in configuration?
I am upgrading my webhosting service.
I have taken the back up of the wordpress.
Now I have query,
1. Do I need to reinstall the theme ?
2. How can I take the back of
a) theme relates setting ?
b) Ad sense position across the widget
c) Custom css file
Hi, I want to add Bock 15 next to my header, I’ve tried make it using VC + css but it is not the same. What I want is add php code on header-style-3.php
My website is http://fotomundi.org/
At Home you can look what I want (but it was make whit Visual composer + css), I need make the same but using PHP, because I need Block are on every page and post.
Help 🙁
add on css custom panel —>
.td-main-content-wrap {
padding-top: 0px;
}
Any css code should go in the theme panel-> custom css box: http://screencast.com/t/qCg3Drxp
You will also have to change the image and the category name in the code like this example:
.category-my_category_name_here .td_category_template_8 .td-category-header {
background-image: url("my_image_here");
background-repeat: no-repeat;
background-size:100%
}
Thank you!
Hello,
you can add this code in the theme panel->custom css box to limit the menu size and add a scroll to it:
.menu-item-125 .sub-menu{
max-height:400px;
overflow:auto!important;
}
result: http://screencast.com/t/y91qBEnvjQ
Thank you!
Hello,
Please use this css code to reduce the top margin on the homepage:
.home .td-main-page-wrap{
padding-top: 0!important;
}
Add the code in the theme panel->custom css box
Thank you!
Hello mw4asbsdev,
Please check your custom CSS box to have no syntax error. Please provide a screen with your Custom CSS box so I can inspect it closer.
Thanks for the message!
Well not in the css. Please check the theme panel under footer settings: http://screencast.com/t/rxv8mPxpCbxJ
If the option is not there please contact us via email at contact@tagdiv.com and provide wp-admin so wer can login and investigate where this comes from.
thank you!
Bogdan B
Hello,
This is because the theme does not load the other font weights: http://screencast.com/t/Pk1SBGMir3Pe
If you want to load other font weights you will have to load the font using css to load all the font weights if they are available from google that is: http://screencast.com/t/pPe7HMgzpcV9
You will have to use css to load the fonts like so: https://forum.tagdiv.com/topic/problem-with-font-on-post-page/
Thank you!
Hello veet1975,
Our theme has no RTL support because it has been designed to be used in this layout, sorry!
Unfortunately, we have no plan on implementing it in the near future. Implementing RTL support in our theme will require 2 style.css files and it will add significant “weight” to the theme. Using the RTL mode means that lots of elements have to be adjusted and this thing involves custom work and we cannot provide this at the moment!
Please try to do a simple search of our forum and you will see that our team offers support only for theme related problems and which not require additional customizations. Please check again our support policy here -> https://forum.tagdiv.com/support-policy-2/
Thanks for your understanding!
Hello ealthy Maniac,
If you want to hide some posts for certain blog posts you should use a bit of CSS code to do that. Please provide your website so I will be able to provide a more accurate code. Also, you can provide some useful screenshots where you should explain what type of ads you want to hide.
Thanks for the message!
Hello,
Here is an example of header style 10 and a big logo: http://demo.tagdiv.com/newspaper_cars/
Header styles 9, 10 and 11 will show the logo in the exact dimension you upload it in.
You cannot enlarge an image using css without losing clarity. You will have to use an image editor like photoshop to create a big size logo. You cannot enlarge smaller ones. You can but the result is extremely underwhelming
Thank you!
Hello,
In order to limit the image to the box only, you will need to use css to ad an image to the container as there is no setting to do so. Here is an example of how it can be done:
https://forum.tagdiv.com/topic/category-box-changing-the-bg-photo/
Thank you!
Hello tkvmai,
Unfortunately, please notice that our product does not have such an option for dynamic width and we do not recommend to do that through the custom CSS code because the layout of the theme will be damaged. If you want to change the width of the theme to be in full-width mode, please notice that is not a simple task and you will have to adjust the entire theme to the new width for better results.
If you want to display more levels in our theme and you are not aware of the steps in this regard, please consider hiring a freelancer/developer to do this for you because we cannot provide customization services at the moment, sorry!
Thanks for your understanding!
Hi again,
I’ve now found the file “td-config.php” och added some new styles to it. The styles shows correctly in the Format-menu and it ads the correct classes to the content, but the CSS don’t affect the content that it’s applied to.
Any ideas of what’s wrong?
Example ‘three columns’
In td_config:
// columns text
td_api_tinymce_formats::add('td_text_columns',
array(
'title' => 'Text columns'
));
td_api_tinymce_formats::add('td_text_columns_0',
array(
'parent_id' => 'td_text_columns',
'title' => 'two columns',
'block' => 'div',
'classes' => 'td_text_columns_two_cols',
'wrapper' => true,
));
td_api_tinymce_formats::add('td_text_columns_1',
array(
'parent_id' => 'td_text_columns',
'title' => 'three columns',
'block' => 'div',
'classes' => 'td_text_columns_three_cols',
'wrapper' => true,
));
In style.css:
.td_text_columns_three_cols {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 40px;
-moz-column-gap: 40px;
column-gap: 40px;
-webkit-column-rule-style: solid;
-moz-column-rule-style: solid;
column-rule-style: solid;
-webkit-column-rule-width: 1px;
-moz-column-rule-width: 1px;
column-rule-width: 1px;
-webkit-column-rule-color: #e9e9e9;
-moz-column-rule-color: #e9e9e9;
column-rule-color: #e9e9e9;
margin-bottom: 26px;
}
/ Isak
Hello,
I need to have my own advertisement in the header ad space pointing to my ecommerce store. I made an advertising image with call to action that is 728 x 90. I got this size by right clicking on the demo ad, clicking Inspect, and seeing the image size used in that.
I tried adding the widget for a top ad, but I don’t see how to add an image into that spot. There’s a box that says CSS class, but I don’t know what that means.
If there’s a way to add an image (with a link) for the header ad spot, then I’ll also need instructions for above the footer and the sidebar ad. Just an image – no code. Maybe a shortcode, if it will pull my image.
Thanks,
Nancy
Hello,
Below I gave you a quick solution using the CSS code. Place the code in Theme panel->Custom CSS area.
.footer-text-wrap{
display:none;
}
.td-footer-bottom-full .footer-logo-wrap {
text-align: center;
}
.td-pb-span3 {
width: 50%;
}
The result you should see here -> http://screencast.com/t/QGf8AZZtzLV
Thanks for the message!
Hello,
If the default blockqote has changed, there may be something affecting it;s css. Please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Then test the quotes again.
Thank you!
Hi,
I am using google font Hind. There are only two font weight options regular and bold in the theme panel. I would like to have font-weight: 500 for entry titles, but even after I made CSS changes, it didn’t work.
Hello,
Well there is no setting in our theme to remove the sidebar from a specific plugin page but you can use a css trick to do it:
.post-type-archive-tribe_events
.td-main-sidebar{
display:none!important;
}
.post-type-archive-tribe_events .td-pb-span8{
width:100%!important;
}
Add the code in your theme panel->custom css box.
Thank you!
Hi,
Can I add my own CSS-classes to the format-menu in the post editing?
I mean the menu on this image:
https://www.dropbox.com/s/6qrwvogbiyalver/text-format.png?dl=0
/ Isak
Hello ranahard,
If you want to decrease the height of your header, you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-header-style-10 .td-logo-wrap-full .td-logo {
line-height: 70px;
}
.td-header-style-10 .td-logo-wrap-full {
min-height: 70px;
}
The result you should see here -> http://screencast.com/t/Tq87IkV5ro6
Thanks for your understanding!
Hello,
It seems the mobile and the category template 7 require special targeting as they will not take into consideration the global css for these elements.
Please replace your previous code with this one:
.home .entry-crumbs{
display:none;
}
.entry-crumbs{
text-align:center!important;;
}
.td-crumb-container{
width:100%!important;
}
Thank you!
Hello,
Unfortunately I wish it were so. It’s not that i don’t want to help. The user you mention also asked us for help in this matter via email and we replied in the same way. There is no easy way to customize the theme and make it RTL. The issue you are facing is caused by the modifications made to css. It could also have been a caching issue as i don’t see the problem anymore on your site: http://screencast.com/t/PIlrdYmKudi
We wish we had a simple way of making our theme RTL but unfortunately this is no simple task as you have already seen.
If you decide you cannot use our theme properly because of the RTL issue, we will be able to provide a refund so you can choose another RTL compatible theme.
Thank you for your understanding!