Hi,
You need to edit this file and change the css like this: http://screencast.com/t/fD1C2kJzcA
Thanks
Hi,
I have another problem. I`m tring change something from style.css, but after refreshing browser, i see unchanged result
Hi,
If you want to hide footer on pages you can use this custom css:
.page .td-footer-wrap{
display: none;
}
You can hide the footer only in few pages by using .page-id-xx instead of .page
Result:http://screencast.com/t/XWzLSYXZqoy
Hope this helps!
-
This reply was modified 11 years by
Alin [tagDiv].
Hi,
I have noticed this now. Please make sure you also test this without any plugins active and leave just Visual Composer plugin active and also empty cache then check again.
In some cases this turned out to be due to the tagdiv speed booster plugin as this plugin moves the css and js automatically to the bottom of the page.
We suggest to deactivate all plugins to make sure this doesn’t happen due to others plugins you use and if this issue persists please let me know.
Thanks
Hi,
Please use this css:
.td-post-sharing .td-classic-facebook iframe {
width: 130px !important;
}
I have also tested this and this css should fix this: http://screencast.com/t/ehX3QSUPTH
Please let me know!
Thanks
Hi,
1. Please use this css to hide the widgetised sidebar on mobiles:
@media (max-width: 767px) {
.wpb_widgetised_column {
display: none;
}
}
2. I have noticed that you use the text widget to add your ads. Please use our widget or VC ad box element: http://screencast.com/t/gTiyQnewr
3. Unfortunately the theme doesn’t have an option for that but you can add it manually or try to find a plugin for that.
Thanks
Hi,
I think that you refer at this white space: http://screencast.com/t/sUSQSjiRSrhs
You can decrease it with this css code in Theme Panel > Custom Css: http://screencast.com/t/ASaoXK501
.td-post-content p{
margin-bottom: 15px;
}
Hope this helps!
Hi,
You can do this with custom css for first item of your main menu: http://screencast.com/t/PDThCf2Nh
.menu-item-first .td_mega_menu_sub_cats .block-mega-child-cats a{
display:none;
}
.menu-item-first .td_mega_menu_sub_cats .block-mega-child-cats a:first-child{
display:inline-table;
}
.menu-item-first .td_mega_menu_sub_cats .block-mega-child-cats a:nth-child(2){
display:inline-table;
}
If you want to do this for all megamenu subcategories, you have to change this value: http://screencast.com/t/5iLiIfNj
Thanks!
Hi,
Unfortunately there is no block that you can use to full width and the module 12 can’t be added using the page builder and it can used just on category layouts.
You could use block 13: http://demo.tagdiv.com/newsmag/block-13/ on two columns and a sidebar. This will closer than you want without any custom modifications.
You could also alter one of the existing blocks code to use another thumb image size and also adjust the css to look good but this is not easy and you would need custom work for it.
Sorry fro the inconvenience!
Thanks for the message!
Hi,
Add this div tag: http://screencast.com/t/KLJskO9R .. http://screencast.com/t/dkMcXcnd
Then use the class to change it via css.
Ex: http://screencast.com/t/nDYirxRidb0v
You need to alter the layout code to make it fluid and to fill the full width and it’s not an easy task so I suggest to get someone to do it for you if you need it and don’t know how to do it.
Thanks
Hi,
Use the following css to hide it (add it inside Theme Panel -> Custom CSS):
.td-theme-slider .td-slide-views {
display: none;
}
Thanks
Hi,
The Theme doesn’t have an option for this, but you can hide them with custom css in Theme Panel:
http://screencast.com/t/Hk76XBHBqG
http://screencast.com/t/tJ1DjWrYAqZr
.td-big-grid-meta{
display:none;
}
.td-big-grid-meta .td-post-category{
display:none;
}
.td-editor-date{
display:none;
}
.meta-info .entry-title{
display:none;
}
.slide-meta{
display:none;
}
Thanks!
Thanks Emil!
I will try (1) when I get a chance, as well as (2)
I do realize visual composer is actually also used on the category pages; so I guess was trying to figure out how to limit additional CSS files on post pages.
🙂
Hi,
To remove the more stories box from mobiles you can sue this custom css in theme panel > custom css filed:
@media (max-width: 767px) {
.td-more-articles-box{
display:none;
}
}
Thanks
Hi,
1. You could add a new size like this – http://screencast.com/t/X82FaXO9o
array(
'name' => 'td_200x150',
'width' => 200,
'height' => 150,
'crop' => array('center', 'top'),
'used_on' => array(
'Related articles'
)
)
Enable it from the Theme Panel – http://screencast.com/t/ikTADp1Wdcv
Regenerate thumbnails using Force Regenerate.
Result – http://screencast.com/t/YBErs1WoAT
2. Try this code (add it at the end of functions.php):
function dequeue_visual_composer_css() {
if (is_single()) {
wp_dequeue_style('js_composer_front');
}
}
add_action('wp_enqueue_scripts', 'dequeue_visual_composer_css', 1003);
3. I’ve added this issue on the list, we’ll investigate.
4. You could try defer, async may give some errors:
function defer_parsing_of_js ( $url ) {
if ( FALSE === strpos( $url, '.js' ) ) return $url;
if ( strpos( $url, 'jquery.js' ) ) return $url;
return "$url' defer=\"defer\" '";
}
add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
Thank you, Emil G.
Hi,
The size of the images can be changed from functions.php: http://screencast.com/t/FbsZ2g0g
And regenerate thumbnails: https://forum.tagdiv.com/how-to-fix-strange-thumbnails/
But if you re-size it you might need some css modifications.
Use this custom css and add it in theme panel > custom css filed: http://pastebin.com/77F0NWGS
Result: http://screencast.com/t/9gA1qZ089UMW
Thanks
Hi,
Please use this custom css:
.td-post-text-content li{
line-height: 30px;
}
Thanks!
Hi,
You can change font size for block title from Theme Panel like this: http://screencast.com/t/9GYc5ZcqchH
And you can make this changes in custom css for background you have to increase padding: http://screencast.com/t/q9gYqBEqT6hC
.block-title > span{
padding: 10px 15px 10px 15px;
}
If you want to center title to all blocks use this cutom css: http://screencast.com/t/WfhscBWPbBq
.block-title{
display: block;
text-align:center;
margin-left:0px !important;
}
If you want only for block 7 use this class .td_block_7 .block-title
Thanks!
Hi,
Yes, the theme uses style.css file.
Thanks
Hi,
You can use custom css for this: http://screencast.com/t/1eJg6E6qjk
.td-post-content p a {
border-bottom:1px dotted;
}
Thanks!
Hi,
The simpler way would be to set and use the “homepage bg” template. In that case you will automatically have added an slider to the page then use custom css to set the background to be transparent.
Set the background template then remove the big slider you use then let me know and I will provide you the css to set the background to transparent.
Thanks
Hi,
Add this CSS in Theme panel -> Custom CSS
.header-content-rec {
margin-bottom: 28px;
}
Thanks!
Hi,
Unfortunately the theme doesn’t have an option for that but you could use css and hide them on those pages on which you don’t want them or you could use a condition in the footer.php file and set them to show only on those pages: http://screencast.com/t/IRuaDNaHGemF
Either way you need custom work for this which we cannot provide at this time as we work on updates/development and support. I suggest you to get someone to help you with this if you need it and don’t know to do it.
Sorry for the inconvenience!
Thanks for the message!