Hi,
This is strange but try to add this code in Theme panem->Custom Css and see if it works for you
.single .td-post-featured-image {
pointer-events: none;
}
Thanks
Hi,
To add a font awesome icon in a menu, get the full code for it – http://screencast.com/t/17L3A4uSXih not just the class, then add it in the menu navigation label (before or after) like this – http://screencast.com/t/yKkb1i7kHR
Thanks
Hi,
You can disable the general modal image here in Theme panel->Post settings here – http://screencast.com/t/0U1Pj67HaGA
However if there is a modal image property set on the image in the post you should disable it there too – http://screencast.com/t/PnLiECiv7t – http://screencast.com/t/fx7pHiYvJW
Thanks
Hi,
You can try this code, just enter it in Theme Panel->Custom Css
.td-post-source-via .td-post-small-box {
display: inline-block;
padding-right: 5px;
}
Result with code added – http://screencast.com/t/cAhpD29APL7q
Thanks
Hi,
It seems that due to some modifications the Block title font has a size of 20px which is making get cutoff because of the overflow property. You should lower the font-size to 19px and it will look good, or try this code in Theme panel->Custom Css that makes it just 1px smaller
.block-title > span {
font-size: 19px;
}
Thanks
Hi,
The demos are available so you can see the possibilities of what you can create using the theme. Uninstalling the demo will remove everything belonging to it, the content included and all it’s settings.
If you install a demo without content it adds only the settings. Then you could choose a page template in Visual Composer – http://screencast.com/t/QkeamCr8gE1 and easily create a page with predefined layout, or create your own pages and add your content. You just have to experiment until you create something you like.
Thanks
Hi,
Of course you can use a child theme, but please read this explanation of how the child theme works and the need to update it https://forum.tagdiv.com/topic/setting-up-child-theme/
Thanks
Hi,
Those blocks and content come predefined in the footer template style – http://screencast.com/t/fDW8huNUqzpK located here – http://screencast.com/t/ga1Ccgpk You can choose an empty template and add your own widgets like this – http://screencast.com/t/0nwjsd483v and further customize them – http://screencast.com/t/gFDxlkED
Thanks
-
This reply was modified 9 years by
Simion C..
Hi,
The call to action for “Read more” comes from the td_module_18 – http://screencast.com/t/t4gfyGBCmTRa but it would be dificult to replace it with a custom button. You can try a different way to customize that link using css, to make it look like a button (enter it in Theme Panel->Custom Css)
.td_module_18 .td-read-more a {
background-color: lightblue!important;
color: white;
border: 1px solid transparent;
border-radius: 25px;
transition: all .5s;
padding: 5px 10px;
font-size: 12px;
font-weight: 600;
line-height: 1.5;
}
It looks like this – http://screencast.com/t/RRiuvhmLbw
You can edit the colors as you like to make it look the way you want
Also if you want to hide the arrow next to the text u can use this code
.td_module_18 .td-read-more a i {
display: none;
}
Thanks
Hi,
You have to enter the code provided above in the Mobile css section, not in the Main custom css and then it should work as intended. Please let me know if it still doesn’t work for you.
Thanks
Hi,
From inspecting your site i can see that are multiple css styles overlapping the main theme style. If you are using a child-theme please disable it and see what happens. Also if u have a child-theme please make sure you have updated it to the latest version, from the package that you downloaded from Themeforest. Please let me know if you still have issues.
Thanks
Hi,
You can disable the register link in WordPress settings – http://screencast.com/t/gmsg03H3S Also you could hide the register link using css, with this code
.td-menu-login #register-link {
display:none;
}
.td-guest-wrap .td-menu-login span {
width:0!important;
}
Thanks
-
This reply was modified 9 years by
Simion C..
Hi,
Enter this code in Theme panel->Custom Css to remove that white space
.import_video_ad_bg {
margin-bottom: 0;
}
Thanks
Hi,
Are you talking about this space here – http://screencast.com/t/qjPhjeVfTm ? It would be best if you would provide a screenshot about what you want to change.
Thanks
Hi,
I’m assuming you want something like this – http://screencast.com/t/FPW667VyP To achieve this you have to stretch the row to full width – http://screencast.com/t/UZKhx0jZ If this is not what you wanted please provide more information.
Thanks
Hi,
None of you own content will be deleted by the theme. When you install a demo, there is an option to include content like posts, menus etc. If you uninstall the demo the import system will remove only the included demo content not your own, then you can choose to install a different demo and add your content, or create your own pages using the customizing possibilities of Visual Composer. You can change the demos without any concerns regarding you own content because it won’t be affected.
Thanks
Hi,
That could be happening because you have the Front page displaying your latest posts – http://screencast.com/t/vW6ipnRvb8 Change the Front page to a static one and select the home page you want – http://screencast.com/t/wwtqwTmAUdlA
Thanks
Hi,
You just have to change the color to the new one, in the previous code like this
.footer-social-wrap .td-social-icon-wrap i:hover {
color: #d6ae00;
}
Thanks
Hi,
You can remove those in Theme panel->Block settings->Meta info on Modules/Blocks here – http://screencast.com/t/rDAVEocoeKU
Thanks
Hi,
You can edit\add\remove blocks from the sidebar in Appearence->Widgets like this – http://screencast.com/t/L9QOeXHCj3
Thanks
Hi,
Make sure the Big Grid is on a the full row in order to display properly, there just isn’t enough space for it set on a 2/3-1/3 layout. Please check out the Big Grid demo here – http://demo.tagdiv.com/newspaper/big-grid-1/ also if you want to read more on Visual Composer – https://forum.tagdiv.com/how-to-use-visual-composer/ If everything is ok in that regard please provide a link to your website so i can inspect it closer.
Thanks
Hi,
You must be using some kind of custom add manager that causes this, normally in Header style 9 – https://forum.tagdiv.com/header-styles/ the header add is located beneath the menu, but you could change it’s location (assuming you have a header add code placed in Theme panel->Ads->Header add) by modifying header-style-9.php from the the theme files like this – http://screencast.com/t/8GMPckXe335D
Example with add between top bar and logo – http://screencast.com/t/IHTw92Sm9MN the code looks like this – http://screencast.com/t/tXEaT2ljGO4F
Example with add between logo and header menu – http://screencast.com/t/keEBZQX0J4jO the code looks like this – http://screencast.com/t/JaNTkBda8
Thanks
Hi,
To change the buttons from transparent to a color, lightgrey for example, just change the background-color to whatever you want in the code from above like this
.td-left-smart-list, .td-right-smart-list {
background-color: lightgrey;
}
Result – http://screencast.com/t/CiflU7fq
Thanks
Hi,
If you want to customize the “Read more” you just have to change it’s translation in Theme Panel->Translations here – http://screencast.com/t/qDXOaoQ6oR
Thanks
Hi,
Please follow this tutorial to set your avatar – https://forum.tagdiv.com/author-card/ more information here – https://forum.tagdiv.com/how-to-set-the-avatar/
Thanks
