- 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
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewspaperUsing Other Ads
- NewspaperBlock settings tutorial
- Using custom fonts
- Using typekit fonts
- NewspaperChild Theme Support
- NewspaperHow to Make the Site Faster
The ‘Add Image’ element is not displaying properly in the front end of my website. It does not align correctly and seems to fall short of the right dimensions. All the other elements work. I got in contact with Visual Composer support and they have said that it is a theme issue. This is their response:
Your theme is adding a margin to the “figure” html tag which is used to render the single image element. You can remove it using following CSS code:
figure.wpb_wrapper.vc_figure {
margin: 0px !important;
}
If you want it to affect entire site, then you need to add this via the child theme stylesheet or you can confirm with the theme author whether there is any setting in the theme where you can add it to make the global change. The normal custom CSS at your end is disabled by the theme author.
Can you please help as I don’t know what to do.
Hello howtoisolve,
I have checked your website URL and I saw the color switching in your header. Please notice that the CSS working in cascade and the first time take the code from style.css that is set ti by default and then take the color that you have changed from Theme panel and practically this flash is generated by this cause. As a workaround, you have to check your style.css and try to add directly in this file your desired value of color.
Hope this helps!
Thanks.
Hi,
Please try this code:
@media (max-width: 767px){
.td-header-top-menu-full {
display: block!important;
}}
Add it in the theme panel->custom css box.
Thanks.
i changed Theme color from default blue theme color through theme panel (Not using external CSS).
When i opened http://www.howtoisolve.com – First load blue default theme color and then my changed color (Orange Blue). More you can also see with open new post.
What can i do in this case.
2’nd
You can also experience that for my post title also, I have made changes in font size, So first load in default size then adjust on my new changed text size.
Whats common problem creating this issue. please help me!
Hi,
The image has an opacity of 0 set from the css because the javascript is still broken as seen here: http://screencast.com/t/VaN8yPaFbw Are you sure you deactivated ALL plugins ecept visual composer and cleared cahce? Or maybe you have a JS code running that interferes with the theme js. Please try to restore the theme to it;s defaults and test again.
Thank you!
Hi,
The top menu is deactivated with css on mobile. Please provide a link to your site so I can inspect it and provide the proper css.
Than you!
Hello delgermurun,
Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-scroll-up-visible {
display: none;
}
Thanks.
Hello Vittorio,
First of all, please try to disable all the active plugins, leave just Visual Composer to active and instal only the plugins that come bundled with our theme and rule out the conflicting plugins.
Please notice that the CSS working in cascade and the first time take the code from style.css that is set it by default and then takes you custom CSS that you have changed from Theme panel. As a workaround, you have to check your style.css and try to add directly in this file your desired custom CSS code.
Hope this helps!
If is not what you mean, please provide more details so I will be able to provide a more accurate response.
Thank you for the message!
Hi,
If you use a text block immediately after the video you will get those results. Every text blo0ck has padding and margins to it and if you use a h2 title inside the text block , then you increase these spaces as a heading adds spacing as well. You also get spaces from a widget that is in place there adding bottom spacing to the text block. Please remove all your plugins except visual composer, clear cache and reset cdn files. Then check the spacing again. I suspect there is a plugin that alters the css.
Thank you!
Hi,
You can remove the gradient using this css code:
.td-header-gradient:before{
display:none!important;
}
Thank you!
Hi,
Unfortunately you cannot get the top menu to display inside the main menu. You can however use this css code to activate the top menu at the top of the site:
@media (max-width: 767px){
.td-header-top-menu-full {
display: block!important;
}
.td-header-sp-top-menu {
display: block !important;
}}
Thank you!
Hi
If you move theme’s css file to footer your page speed will be increased but there will be a layout misalignment for a few seconds until the css it’s loaded and it its style it’s applied. That’s why we decide to keep the css in header.
Also if you decide to move all css in footer you have to keep the same order so make sure you added the code like here: http://screencast.com/t/jnZQRyqy0KoU
$this->move_style_to_footer_queue('google_font_open_sans');
$this->move_style_to_footer_queue('google_font_roboto_cond');
$this->move_style_to_footer_queue('js_composer_front');
$this->move_style_to_footer_queue('td-theme');
In indicated thread my colleague referred at Speed Booster behavior when it’s used with Newspaper theme. In that case the main css mile it’s moved to footer but VC’s css it’s left in header.
Thanks!
Hi
I’ve made an additional tests using Speed Booster plugin. By adding this code: http://screencast.com/t/jnZQRyqy0KoU in td-speed-booster.php file the plugin move all theme’s css file to the footer. It also moves the google fonts and Visual Composer’s css file: http://screencast.com/t/BHgnBsDk Also jQuery file it’s moved automatically in footer when the plugin it’s enabled, this is a correction to my previous reply.
$this->move_style_to_footer_queue('google_font_open_sans');
$this->move_style_to_footer_queue('google_font_roboto_cond');
$this->move_style_to_footer_queue('js_composer_front');
$this->move_style_to_footer_queue('td-theme');
Before making any changes in plugin’s file check its status under System status panel and make sure it is active: http://screencast.com/t/zONMbMWql If the plugin is inactive comment this code from td-speed-booster.php file to make it active: http://screencast.com/t/VHE9iuEqgc
I hop this helps.
Thanks!
Hi,
I want to hide Authors from certain Categories on Blocks, which is not possible by CSS because the categories from Blocks get not stamped. Actually the user @fbengo had a tutorial here for Newsmag, but Im using Newspaper and I tried to apply it on “td_module_single_base”. But nothing happened.
-> https://forum.tagdiv.com/topic/hide-author-on-posts-on-some-categories-and-a-few-more-issues/
Anyone has an idea or help on that? To the developers: Either make the category class stamp or implement this in a future update, this seems to be a feature lot of people demanding..
Thanks.
Hi,
You can target every post template with css like so:
.single_template_6 .post .td-sub-title {
color:#484848;
}
If you want the code to apply to multiple templates, use it like so:
.single_template_6 .post .td-sub-title,
.single_template_7 .post .td-sub-title,
.single_template_8 .post .td-sub-title {
color:#484848;
}
Thanks.
Hello fajriearadea,
Please notice that the “more article box” are disabled for the mobile mode and then this feature is not be shown in this case. If you want to have this feature to the mobile mode, you have to use a bit of CSS code to do that. Please try the code below and place it in Theme panel->Cusotm CSS area.
The code is ->
@media (max-width: 767px){
div.td-more-articles-box {
display:block !important;
}
}
The result you should see here -> http://screencast.com/t/XkFuGaN4j7
Also, if you want to use the related articles feature without thumbnail, please try the code below and place it in Theme panel->Cusotm CSS area.
The code is ->
.td_module_related_posts .td-module-image {
display:none;
}
The result you should see here -> http://screencast.com/t/bF0WXSwLaIG
Notice: The related articles may not be used on the sidebar. This feature was designed to be used only in 2 or 3 columns.
Thank you for your understanding!
I am using your Newspaper wordpress theme. I have ssl certificate on my server but some files is not converting in https://
I am looking for two files location one is [php file name]::
<link rel=’stylesheet’ id=’jquery-style-css’ href=’http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css?ver=4.5′ type=’text/css’ media=’all’ />
And another one is ::
<div class=”td_module_6 td_module_wrap td-animation-stack” itemscope=”” itemtype=”http://schema.org/Article”>
I changed in td_module_single_base.php file but still it is not working.
My domain is : https://desiforce.com
Hi
Try this css ion theme panel > custom code > custom css:
.td-category-description{
display: none;
}
Thanks!
hello,
as you can see on http://finanzwelt.de the custom css always takes some time to overrule the standard layout, meaning: the page always loads in standard-design first before the custom css gets read and shapes the site accordingly.
how can i make the site appear in custom css in one go (without the switching-behaviour)?
i thought once i cache the site (as recommended by you with wp supercache) the site’s layout would result in one cached css-file which includes all custom changes… but that is sadly not the case. the site is still being built the standard way and then eventually switches to its actual state.
thanks, cheers, V.
Hi,
Well, you can’t. If you want to add code, you have to edit code. We do have a few code boxes in the theme for CSS ,JS and HTML but this will not help in adding the HTML in the desired locations. You will have to edit the header.php file to have access to the header and body tags. http://screencast.com/t/eQcoYXpH
Thank you!
Hello,
Unfortunately we do not recommend changing the width of the site at all as the smart sidebar will not be the only element to break. We highly discourage this as you will need lots of customization to adapt every element to the new width. All the theme elements depend on the width you modified. In order to have all the elements display properly again, you need to change their css to fit in the new container size.
Thank you!
Hi,
I have checked your site and on both android and ios the top bar displays at the top of the page. The display: none and display:block css parameters are not OS dependent. They will work on any browser and any OS.
Thank you!
Hi,
You can use this css trick to make the images height smaller:
.single_template_2 .td-post-featured-image {
height: 500px!important;
overflow: hidden!important;
}
.single_template_2 .td-post-featured-image a img{
transform: translate(0px, -100px);
}
Thanks.
Hi
Ty this css in theme panel > custom code > custom css:
.td-container {
background-color: rgba(255,255,255,.75);
}
If you need further assistance please provide your site url so I can have a closer look.
Thanks!
Hi,
The effect you are seeing is resolved by the solutions I posted above. Either increase your loading speed following the guide I provided or modify the colors directly inside the style.css file. There is no other alternative. If you say that this error did not occur 2 weeks ago, please revert any changes made since then (but we have no reports of the theme update or the new version of WP to cause this)
Thank you!