Hi
If you’re using a widget from Visual Composer the background color can be set from column settings: http://screencast.com/t/miCRO811pvQx
You can change the pagination background color using this css: http://screencast.com/t/o0KwHJVlmL9
.page-nav a:hover{
background-color: #D9BFBF;
}
.page-nav a{
background-color: #C16E6E;
}
.page-nav:first-child > div{
background-color: #E2EC4D;
}
Thanks!
Hi
This can be achieved only by editing the file corresponding with the post template used: http://screencast.com/t/GOumHsaBWNH You can move anywhere you want to display line indicated categories.
Thanks!
Hi
Glad you could manage to solve this issue.
Thanks for letting us know and for your message!
Hi
I’ve test this on my site and the trademark character is displayed fine on mobile devices: http://screencast.com/t/5pPyxwON I suspect that you have this issue because of a different css which applies on that character. Try to deactivate all plugins except Visual Composer, clear all caches and test again. If the problem persist please provide a link so I can inspect it closer.
Thanks!
Hi
If you add a specific tag for posts which want to be displayed in big grid, and set the filter according with these tags, the posts will be displayed according with the filter set: http://screencast.com/t/qaxqbwM171uh but
the theme doesn’t have an option to set a specific post on a specific thumb,
Thanks!
Hi
Please check our documentation for more details about theme settings: https://forum.tagdiv.com/newsmag-newsmag-documentation/
If you need other informations regarding the theme functionality please let us know!
Thanks!
Hi
In some cases the Apache server need to be restarted as the changes from phph.ini file be applied. Check in cPanel if you have any option for this or contact your host provider and let him know about this.
Thanks!
Hi
The theme doesn’t have a block with a two columns on mobile devices. I’ve found a solution by modifying the block’s 7 layout: http://screencast.com/t/cDzrKOTe but I test this layout only on standard mobile format and I don’t know how will work on different mobile version.
@media (max-width: 767px){
.td_block_7 .td-block-span6 {
width: 50%!important;
}
.td_block_7 .item-details {
margin-left: 0;
margin-top: 85px;
}
}
Hope this help.
Thanks!
Hi
You can change the mobile icon using this css in theme panel > custom css: http://screencast.com/t/Byv6tGVpklgv
.td-icon-mobile:before {
content: '\2630';
font-size: 35px;
}
You can increase or decrease the font size value if you want a different size for the icon.
Thanks!
Hi
This usually happens when loading some file from another host/url. I have checked your browser’s console and you have this erros error – http://screencast.com/t/wrgDHip4WL
The solution would be to load the files from the same url as the site or try this solution – http://webmasters.stackexchange.com/questions/71630/font-blocked-from-loading-by-cross-origin-resource-sharing-policy-no-access-co
Let us know how it goes.
Thanks!
Hi
Please make sure that you have permission for upload folder, you can try to upload an image to media library to check this. Also you can contact your host as this may be related to the server configuration.
In case you need to change the permissions here it’s a guide: https://codex.wordpress.org/Changing_File_Permissions
Let me know how it goes!
Thanks!
Hi
I am not sure what you mean, please provide more details about what you’re trying to do and maybe I can provide a solution.
Thanks!
Hi
You can select which category will be displayed in a grid from block settings in Visual Composer pagebuilder. There is no option to display specific posts in a block/grid but you can achieve that by adding a specific tag/category to those posts, then add that tag/category in the filter field: http://screencast.com/t/BfUtcDUietu
Hope this hep.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
When you install the demo without content only the settings are loaded, colors, fonts etc. The content must be created by the user. You can add the grid or any other block from Visual Composer pagebuilder: http://screencast.com/t/yVhd0YuLkOl More details about page customizations can be found in our documentation: https://forum.tagdiv.com/homepage-how-to-build-and-set-it/ – https://forum.tagdiv.com/how-to-use-visual-composer/ – https://forum.tagdiv.com/block-settings-tutorial/
Hope this help.
Thanks!
Hi
I’ve checked your site and found this error in browser’s console: http://screencast.com/t/ZLEPGM67 This could be caused by a plugin which conflicts with theme js so you can try to deactivate all plugins except Visual Composer, clear all caches and test again. Also make sure you added the videos ids in Visual Composer like here: http://screencast.com/t/KZhEdAOMG2
Thanks!
Hi
I am not sure how you want to display latest article in author box, please provide more details and maybe I can help you. To remove the comment count and website address from author box follow this link: http://screencast.com/t/uqCaVDBo6 – http://screencast.com/t/qflywrHnM
Thanks!
Hi
Try this css in theme panel > custom css, the result should be like here: http://screencast.com/t/wHhihENgW
.page-id-29 .widget .bbp-submit-wrapper{
width:282px;
}
.page-id-29 .apsl-login-networks, .theme-4 .apsl-icon-block.icon-twitter, .theme-4 .apsl-icon-block.icon-facebook{
width: 205px!important;
display:block
}
Thanks!
Hi
I am not sure what you mean as the TM characters seams to be displayed fine. Are you referring to the decorations around this character: http://screencast.com/t/YH11uxl7xR If this is not what you mean please provide more details and a link where this issue appear so I can inspect it closer.
Thanks!
Hi
Glad you could manage to solve this issue.
Thanks for letting us know and for your message!
Hi
Try to reinstall the latest Visual Composer version available with the theme (V 4.7.4) deactivate all plugins, clear all caches and test again. Also check in browser console if there are some errors while you’re trying to edit a block. Another thing which you can do is to check in error log if there appear any errors related with this problem, and make sure you have enabled all blocks in VC settings: http://screencast.com/t/146cjQq0Q6uW
Thanks!
Hi
You can use tabs from Visual Composer to achieve a similar layout: http://screencast.com/t/qQBPT8gdlHX Note that in the current version of Visual Composer the shortcode for tabs has been changed and they are different from those on our demo. We will fix this in the next theme’s updates but meanwhile you can use this custom css in theme panel > custom css: http://pastebin.com/ttmX0r1U – http://screencast.com/t/odvibm25F67g
Thanks!
Hi
To remove the ads from 404 page add this code in td_block_ad_box.php
if ( td_global::$current_template == '404' ) {
return;
}
If you want o remove the ads from some specific pages you need to add a set of conditions like here: http://screencast.com/t/F6eLyoB3U1W
if (is_page(ID) or is_page(ID)){
return;
}
To get the page id follow this link: http://screencast.com/t/Lhewob9kSr
Thanks!
Hi
Try this css, I’ve targeted only this page: http://analisidelsangue.net/wp-signup.php
@media (min-width:1024px){
.page-id-29 .mu_register{
width:900px;
}
}
@media (min-width: 768px) and (max-width: 1022px){
.page-id-29 .mu_register{
width:700px;
}
}
.page-id-29 .apsl-login-networks{
width:410px;
margin-left:auto;
margin-right:auto;
}
.page-id-29 .apsl-login-new-text{
text-align:center;
}
Thanks!
Hi
To load different content from your site depending by device you’ll need a js script which detect screen’s width and load as content is set. Also you could look for a plugin with a built in feature which allow you to manage the content depending by device. Unfortunately I can’t make any recommendation as we didn’t tested any of those plugins and I don’t know how will work with the theme.
If this doesn’t help my advice is to hire for a professional developer to do it for you as we can’t offer custom services at the moment.
Thanks for the message!
Hi
On Contact page from our demo we use Contact Form plugin: https://wordpress.org/plugins/contact-form-7/ for the comments sections. This is page’s layout from in VC: http://screencast.com/t/0iNU2nvF61 After installing the plugin you will have it available in Visual Composer: http://screencast.com/t/xnLJZWGtpVd
Thanks!