Hello fbento,
The blocks were not meant to support this type of modification, especially with pagination which comes from Ajax.
You can try to use a different plugin or try to integrate this one, but custom work is required which we cannot provide.
Thank you!
Hello,
You can modify the default one like so:
Change the menu colors: http://screencast.com/t/1UKg6wwWwf26
Make the site boxed by adding a background color: http://screencast.com/t/olqRIurnm (white works also)
And you can add the hover background color with custom css:
.sf-menu li:hover, .sf-menu li.sfHover{
background-color:#4db2ec!important;
}
The result: http://screencast.com/t/P00s4zyCh
Thank you!
Hello Andi,
When you create your sidebar (or edit the existing one) you can edit the block settings: http://screencast.com/t/UVnEfOftp0Ds
You can filter categories by ID. You can see the category id here: http://screencast.com/t/MqtXVVBg
Thanks.
Hi,
Use this code instead. (The old one was specific to that module)
.td_module_wrap:hover .entry-title a{
color:#f79521!important;
}
Thank you!
Hi,
Please read our documentation on block settings: https://forum.tagdiv.com/block-settings-tutorial/
You can change the post sorting order in block setting: http://screencast.com/t/E4iycVhSz4
Thank you!
Hello Rolf,
Unfortunately, there is no migration option and old elements will not work when Visual Composer removes them. The deprecated ones will still be present for a while, but VC team are not sure when they will remove them.
The best thing you can do is start using the new element and replacing the old ones.
In our latest theme updated (6.5.1) we included the new version of visual composer that contains the new elements as well. They have the same name as the old ones, but if you look at the shortcodes, they are different: http://screencast.com/t/wptRa0Wq
I hope this helps
Thank you!
Hello Thomas,
This error usually occurs when you have some raw HTML on the post/page or custom CSS and tags are not closed properly. Please check your code if this is the case.
You can also disable all your plugins except visual composer and check again to see if this is not a plugin issue.
Let us know how it goes.
Thank you!
Hello Julien,
Please make sure you use the latest version of the theme and the latest version of the social counter
https://forum.tagdiv.com/how-to-update-the-theme-2/
If you already use the latest version, please make sure the correct social id is typed in the social counter settings: http://screencast.com/t/PTNnG6afCxI
You can also try to insert a different ID to see if followers are pulled. (for example ‘cocacola’)
Your Facebook and Twitter pages need to be public. If they are not, the plugin won’t be able to access your followers.
If all these conditions are met, you can try one more thing. Disable all your plugins except visual composer and see if it’s not a conflicting plugin that causes the issue.
Let us know how it goes
Thanks.
Hello,
The theme does not have an option for that, but you can follow some online tutorials on how it can be done:
https://codex.wordpress.org/Nofollow
http://www.wpbeginner.com/wp-tutorials/how-to-add-nofollow-links-in-wordpress-navigation-menus/
http://www.shoutmeloud.com/how-to-add-nofollow-link-attribute-to-any-link-seo.html
I hope this helps.
Thanks.
Hello,
There is no option for that in the theme panel but it can be done if you modify the theme core files:
http://screencast.com/t/sF4MCft8Y
Just reverse the 2 div elements.
result: http://screencast.com/t/DQbA9q91C
As an alternative you could use a different header style: https://forum.tagdiv.com/header-styles/
Maybe style 5? and make the site boxed by adding a background or background color (white works too)
I hope this helps
Thank you!
Glad you figured it out it.
Have a nice day!
Hello,
There is no option in the theme panel for that, but you can remove them with custom CSS:
.td-classic-sharing{
display:none;
}
Or from the core files:
http://screencast.com/t/5WMy2up3k
Thank you!
Hi,
Please provide more details so we can better understand the issue. Please show us an example or screenshot.
Thanks.
Hello,
Unfortunately, there is no option to change the URL of the featured image.
You can disable the link with custom CSS though:
.td-post-featured-image{
pointer-events: none;
cursor: default;
}
Thank you!
Hi George,
That problem most likely originates from the errors in your console i showed you in the previous post: http://screencast.com/t/M9W1Xq0T512
JavaScript minification can sometimes cause this kind of problems.
Try to get them fixed and also try it without any plugins.
Let us know how it goes!
Thank you
Hi,
Unfortunately the modal image does not work on pages, only on posts. You might find a plugin to create the effect you want but I cannot suggest any plugin as we didn’t tested any related plugins. You can try and see which one works best.
Thanks!
Hello,
You can lower the whole site using this code:
#td-outer-wrap{
top:100px;
}
result: http://screencast.com/t/IS4sLr5Z6u
You can make your background ad to link to whatever you want. Follow this tutorial in our documentation: https://forum.tagdiv.com/background-ad/
Thank you
-
This reply was modified 10 years by
Bogdan B..
Hello,
When you override settings and they do not apply, you need to add !important in your code.
The fonts are already overwritten once when you switch to the mobile version.
.td-post-template-1 .td-post-header .entry-title {
font-size: 16px!important;
line-height: 22px!important;
}
Thanks.
Hello,
CSS is very specific and a code you find in our forums will not work anymore if modification to css were already applied. In your case, this code should fix things up.
@media (max-width: 767px){
.td-header-top-menu-full{
display: table!important;
background-color:#222!important;}
.td-header-sp-top-widget{
display: none!important;}
.td-header-sp-top-menu{
float: none!important;
display: table !important;}
.td_data_time{
display:none!important;}
.td-header-style-8 .td-header-top-menu{
padding:2px 0!important;}
.top-header-menu li{
margin-left:-280px}
.td-header-top-menu a{
color:white!important;}
.td-header-top-menu{
background-color:#222!important;
}}
result: http://screencast.com/t/NYJKcOIFW1
Thanks.
Hello George,
Normally, the hover color is changed by the theme accent color: http://screencast.com/t/jc82UIBJ
But in your case there seems to be a problem. I checked your console and you seem to have a few errors:
http://screencast.com/t/M9W1Xq0T512
You can also target it with custom css if you want:
.td_uid_7_56164811b1c2d_rand .td_module_wrap:hover .entry-title a{
color:#f79521!important;
}
I hope this helps!
Hello Fabrizio,
1) You can re-position your review widget but still limited. You can have it at the top or bottom of the post. Not inside the content. To place it at the top you have to modify the core files for the post template you use: http://screencast.com/t/IYVp00MUSj this is for loop-single.php which is used by the default post template. Template 1 uses loop-single 1, and template 2 uses loop single 2 etc.
As far as the blocks are, you can activate visual composer on pages but the feature is not tested and could have weird results. You can still try it out though: http://screencast.com/t/nTIcnKbhb6
2)You can add a text block element and place an image inside it and set it to aling left:http://screencast.com/t/QOpKs8qEbn
You can edit your text block as you would a post.
the result: http://screencast.com/t/iicNvxeJVAB
Thank you!
Hello,
It actualy depends on what icons you created. Our theme uses glyph’s (font icons) for its menu icons:
http://screencast.com/t/W6V493fR
If you create a vector graphic for example you can use it as shown here:
https://css-tricks.com/using-svg/
You can find more tutorials on how to use icons here: http://alwaystwisted.com/articles/2012-05-12-create-a-pure-css-menu-button
Please show an example of what icon type you plan on implementing.
Thanks.
Hello Elena,
Please make sure you do not use any other alphabet letters/symbols when you name your sidebar. When other characters than Latin are used, it is known to crash.
If this is not also not the case then please send as an email at contact@tagdiv.com so we can take a look and come up with a solution. Please provide your login info and a link to this topic so we know who you are and what the problem is.
Thank you!
Hi,
Our first option we give our users is https://studio.envato.com, but there are others you can try and prices differ from one freelancer to another. http://www.freelancer.com, https://www.upwork.com/, etc.
Thanks
hi,
The reply on this topic https://forum.tagdiv.com/topic/cant-find-the-social-icons-in-the-top-nav-bar/ applies to all three topics.
Thank you!