Hello blmg1,
Glad that I could help!
Thank you for the message!
Hello blmg1,
Please try the code below and place it in Theme panel->Custom Css area.
@media (max-width: 767px){
.td-header-style-4 .td-top-menu-full {
display: block!important;
}
}
The result you should see here: http://screencast.com/t/jciXctJKiX6
Hope this helps and let us know how it goes!
Thank you for the message!
Hello matijakurusic,
Unfortunately, our theme hasn’t been designed to have this style that you have presented above. You can get this style, but it is necessary to know a bit of CSS to make this customization. Below I gave you an example for a block/module on my page. Please check this code and try to implement for your website. It is not a simple task and is required more time to achieve as you wish. If you are not aware of all steps wich you will have to follow, we recommend hiring a freelancer/developer to do this for you because we cannot provide custom work for the moment, sorry.
.td-module-thumb img {
border-radius: 20px!important;
}
.td-main-content-wrap {
background-color: lightgrey;
}
.td_block_wrap {
padding: 20px;
background: #FFF;
margin-bottom: 20px;
border-radius: 2px;
border-bottom: 2px solid #e8e8e8;
}
.td_block_wrap .td-next-prev-wrap, .td_block_wrap .td-load-more-wrap {
margin-bottom: -7px;
}
The result you should see here: http://screencast.com/t/msnGzJsZ
Hope this helps!
Thank you for the message!
Hello CodeisCode,
I’ve tested on my side and everything seems to work fine. I cannot recreate this error. Please try to update our theme to latest version (6.6.3) if you do not have already, disable all the active plugins and install only the plugins that come bundled with our theme and try again. After this advice, if your problem is still there, please provide your URL website so I can further inspect the issue.
Hope this helps and let us know how it goes!
Thank you for the message!
Hello ptec1,
You can always get a freelancer from sites like, http://studio.envato.com/ if you don’t know how to do it yourself.
Hope this helps!
Thank you for the message!
Hello CodeisCode,
I am sorry for my inattention. The title appears on the page if you are using the pagebuilder+title template. If you want to hide it, you should try the code below and target each page ID on which you want to apply the code. The page ID you can find it like this: http://screencast.com/t/3G9pppMP
.page-id-910 .td-page-title {
display:none;
}
The result you should see here: http://screencast.com/t/QrfDeLTdn1r
Hope this helps and let us know how it goes!
Hello alexalex11,
Please try another method of CSS with the code below. Please remove the latest code that I gave you and try this:
.wp-caption-text img {
display:inline!important;
}
The result you should see here: http://screencast.com/t/s5WHuwzdpH It should work.
Hope this helps and let us know how it goes!
Thank you for the message!
Hello StockFanatic,
Our theme is optimized for Seo. Please notice that all the Seo customization it must be done manually by you. First of all, you have to install the Seo Yoast plugin and start to configure this. For more information about this plugin and How you can optimize this, please check this link: https://yoast.com/wordpress-seo/
Hope this helps and let us know how it goes!
Thank you for the message!
Hello hbger,
Style.css file is referring to all the style that you have in your front-end and the editor-style.css is referring to all the style that you have in your back-end, dashboard and is required to have wp-admin. If you want to do some customization about the style, you have to modify the style.css file because this one takes up the control of your front end. All CSS codes that you have it is necessary to insert in Theme panel->Custom CSS area and the codes will be put automatically in style.css by the theme.
Hope this helps and let us know how it goes!
Thank you for your understanding and thank you for purchasing our theme!
Hello temporary_saint,
This happens due it has used a template that will not display a featured image. If you want to have on the post the featured image, please try using another single_template that has the featured image on posts, like single_template_3, 4, 6, 7,… For more information about smart list, please check our documentation here: https://forum.tagdiv.com/smart-lists/
As you can see, in our documentation, we recommend using single_template_5 for smart-list because this post template will not display Featured Image on Single Post and also, in our demo preview it is presented this kind of template.
Hope this helps and let us know how it goes!
Thank you for the message!
Hello matijakurusic,
This module does not have a specific class for the background. By default, this background is transparent one and takes the background color of the main container, like this:
.td-container {
background-color: red;
}
The result: http://screencast.com/t/GkhkjExE1eKr
or
.td_module_16 {
background-color: red;
}
The result: http://screencast.com/t/OtNtkZWEvf
For your second request, you should use padding-bottom for to make difference between modules/blocks, like this:
http://screencast.com/t/xBRSPy7jG
.td_module_16 {
padding-bottom: 70px;
}
Also, for your third request, you have to use paddings and margins, like this:
http://screencast.com/t/drTuwyEH -> Here you can see an example. You should adjust this advice to your website.
If is not what you mean, please provide more details so I can be able to provide a more accurate response.
Hope this helps!
Thank you for the message!
Hello alexalex11,
I’ve checked your website and I saw your problem with the alignment. Please try the code below and place it in Theme panel->Custom Css area, like this: http://screencast.com/t/7sVCbUXT
.wp-caption-text a {
float: left;
padding-right: 10px;
}
The result you should see here:
I’ve verified on mobile version and seems to work properly, like this: http://screencast.com/t/2ip0PULjAs5j
Hope this helps and let us know how it goes!
Thank you for the message!
Hello cole-hopper,
Unfortunately, our theme has not been designed to have this option when you want to set a featured image. You should try to find a plugin to do this for you.
Hope this helps and let us know how it goes!
Thank you for the message and sorry for the inconvenience!
Hello Rasken,
Please tell me what kind of header style do you use? I need to know this because depends then I try to change the color of the hover and the classes are different.
If you are using header style to default, you should try the code below to change the hover color, like this:
.menu-item-913:hover {
background-color:red;
}
The result: http://screencast.com/t/qeroQ2Ml2
If you are using, for example header style 3, it is a bit more complicated because appear a lot of classes, like this:
.td-header-style-3 .black-menu .sf-menu > .current-menu-item > a, .td-header-style-3 .black-menu .sf-menu > .current-menu-ancestor > a, .td-header-style-3 .black-menu .sf-menu > .current-category-ancestor > a, .td-header-style-3 .black-menu .sf-menu > li > a:hover, .td-header-style-3 .black-menu .sf-menu > .sfHover > a {
background-color: red!important;
}
The result: http://screencast.com/t/Lweewp77j
As default font, our theme use ‘Roboto’ and ‘Open Sense’.
For more information about pagespeed, please check our tutorial here: https://forum.tagdiv.com/how-to-make-the-site-faster/
About your second request, you can try to do minification to style.css to improve your website speed. We do not recomend this thing because it is possible to appear some errors in our theme but you can try to do this. We have reports about this that function properly. As reference, you should check this tutorial http://screencast.com/t/lgzXo4l8iG and also you should find a plugin to do this for you.
You can do a quick search through the forum to see other tools you can use: https://forum.tagdiv.com/search/minify/
Hope this helps and let us know how it goes!
Thank you for the message!
Hello CodeisCode,
If you want to disable your post title for each post, you should try the code below and place it in Theme panel->Custom Css area.
.td-post-title {
display:none;
}
The result: http://screencast.com/t/jzfvg9FgfwJ
Hope this helps and let us know how it goes!
If is not what you want, please provide more details.
Thank you for the message!
Hello CodeisCode,
I suppose that you want to disable the link to post when you are hovering on the big grid image. To achieve this thing, please try the code below and place it in Theme->Custom Css area.
http://screencast.com/t/naLWJyYFW
.td_block_big_grid_3 {
pointer-events:none;
}
The result: http://screencast.com/t/5CtVdX5pE5
This is an example for big-grid 3. If you are using another big grid you have to use the corresponding class for the grid.
Hope this helps and let us know how it goes!
If is not what you mean, please provide more details about this, so I can be able to provide a more accurate response.
Thank you for the message!
Hello Diego1888,
I’ve checked your website again and I saw that you have not disabled all the plugins. I found a lot of unknown classes, as you can see here: http://screencast.com/t/WKdTjlavLw – http://screencast.com/t/sdpNE9X5
Please disable all the active plugins, except Visual Composer, clear all caches again, and install ONLY the plugins that come bundled with our theme. It is very important this advice because other untested plugins used could cause a conflict and if you have disabled and have enabled only our plugins, you have excluded the reason to create a conflict between plugins.
Only if your problem is still there after this advice, please let us know.
Hope this helps!
Thank you for your understanding!
Hello Diego1888,
I’ve tested on my side and everything seems to work properly. Please try to disable all the active plugins, except Visual Composer, clear all your caches and install only the plugins that come bundled with our theme and try it again. After this advice, if your problem is still there, please provide your URL website so we can further inspect the issue.
Hope this helps and let us know how it goes!
Thank you for the message!
Hello leohans,
If your ultimate update was from 4.X to 6.X, unfortunately, you lose all changes. Newspaper 6 is a whole new theme so an update from 4 to 6 may cause the same issues as switching to another theme (but we did try to maintain compatibility where ever possible).
Always make a full backup of your current installation – https://codex.wordpress.org/WordPress_Backups and then do a clean update, meaning that we recommend that you delete the old version of the theme before uploading the new one – https://forum.tagdiv.com/how-to-update-the-theme-2/ update also the plugins that come bundled with the theme files from the /plugins folder. In the “how to update” guide is specified that you will have to run the script that will import from database your settings.
The shortcodes have been changed so old ones will not work anymore. Please note that old files customization or custom css will not work with the new version and you will have to adjust or re-add them.
Bottom line is that newspaper 6 is a whole new theme built from scratch.
Unfortunately, you will have to clear your agenda and spare a bit of time to adjust all your settings to the new version of the theme.
If you have already Newspaper 6 and you want only to do the update to latest version, you should make this without any problem. All your customization are recorded in the database which are not affected by this update.
Hope this helps and let us know how it goes!
Thank you for the message!
Hello nivosh,
The workaround that I gave you above will be applied for all the posts that you have it. If you want to change a certain post, you can use Visual Composer for posts but after this, you should use a bit of Css to do some customization because VC for the post is not tested for our theme. You should activate VC for post like this: http://screencast.com/t/wm12HNry8yGN
Hope this helps and let us know how it goes!
Thank you for the message!
Hello Arafat,
I’ve checked your Custom Code and I think you forgot a curly bracket, like this: http://screencast.com/t/M7FcvWsFto
Please add this bracket and also use the !important tag and try it again.
The result you should see here: http://screencast.com/t/AKeKRFQWWRko
Hope this helps and let us know how it goes!
Thank you for the message!
Hello SheikhOvais,
In this case, maybe you are using a lot of plugins and one of them causes some java script errors. You can use this feature on the future if you are able to identify which plugin affect the theme and causes this conflict.
Glad that I could help!
Thank you for the message!
Hello fabiocimo,
You should make this update without any problem. All your customization are recorded in the database which are not affected by this update. You should do a backup if you want to do updates the theme from version 4.X to 6.X. In that case, all the code will be overwritten and you will lose all changes.
Here -> http://screencast.com/t/jcNEvJJGh you can see which are the changes in our new update.
Hope this helps and let us know how it goes!
Thank you for purchasing our theme!
Hello Mshamza,
I’ve tested again on my side and the code works properly. Please try to use with !important tag, like below:
.header-search-wrap .td-drop-down-search .btn:hover {
background-color:green!important;
}
Hope this helps and let us know how it goes!
Thank you for the message and thank you for purchasing our product!
Hello
Please try to disable the lazy load from Theme panel->Template settings->Lazy load like this: http://screencast.com/t/vQzewW7wcLuV Also, please try to disable all the active plugins, except Visual Composer, clear all cache and install only the plugins that come bundled with our theme and try again. After these changes, if your problem is still there, please let us know.
Hope this helps!
Thank you for the message!