Home User profile
tagDiv Member
I love to drive fast cars and to play Need for Speed! I enjoy to help customers tweak their websites for high performance! I’m a proud member of the tagDiv support team!
Andrei L.
tagDiv Member

Hi

To change the color which appear when the user hover over thumbs use this custom css: http://screencast.com/t/fsrRSy9Hh

.td-grid-style-5 .td-big-grid-post .td-module-thumb:after {
background-color: #f7be68;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Sorry about that. I forgot to mention that you should comment this line to avoid duplication: http://screencast.com/t/5uH1U3gz9

Thanks!

Andrei L.
tagDiv Member

Hi

If a post doesn’t have a featured image set the theme load a placeholder image when this option from theme panel is enabled: http://screencast.com/t/0EyWnezDRJb You can set a custom image if you want, but it be loaded in all pages, not only in category page. To set a custom image you need add an image in /images/no-thumb directory: http://screencast.com/t/bIQdJo24bHF1 then replace in this function: http://screencast.com/t/eMg8ysBwfWm1 the name of the image like here: http://screencast.com/t/vSFA7UnhRWOd

Thanks!

Andrei L.
tagDiv Member
Table - reply

Hi

Try this css in theme panel > custom css:

table td{
border: 0px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
}
.vc_custom_1445898002865{
background-color: #FFFBFB;
}

Note that fore tabel’s background color I used a temporary class generated by VC which will change when the row is edited and the css will not be applied after that. You can add a specific id for that row and use it instead of this class: .vc_custom_1445898002865 http://screencast.com/t/CxnDg9zoWma

The css will look like this:

#special{
background-color: #FFFBFB;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Please send us an email at contact@tagdiv.com and provide your login information and and ftp access so we can take a closer look at the problem, also include a link to this topic. Before that make sure you back up the database and your site: https://codex.wordpress.org/WordPress_Backups

Thank you!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

As a css rule to be aplied only for mobile devices you need to use media queries like here: http://screencast.com/t/jCUEnWX9XAE

@media(max-width: 768px){
.woocommerce-page div.product div.images, .woocommerce-page div.product div.summary{
float: none!important;
width: 80%!important;
margin-left: auto;
margin-right: auto;
}
}

The Up-Sells products are controled by woocomerce and they have a width wich don’t allow three product on the same row but you can use this css to achieve that: http://screencast.com/t/8u5duk5wa

.woocommerce-page ul .product{
width: 29.25% !important;
}

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked your site and noticed that you’re using page builder + title as a page template, that’s why the page title and Breadcrumbs appear on top of the page. To remove it you need to chose a different page template for the homepage in Visual Composer page builder: http://screencast.com/t/b1Xenwnrsy You can find more information about page templates in our documentation: https://forum.tagdiv.com/newsmag-page-templates/

Hope this help.
Thanks!

Andrei L.
tagDiv Member

Hi @SALZBURG12

The current version of Visual Composer available with the theme V 4.7.4 is tested and works fine. Please make sure you installed the plugin from the same path with the theme, clear all caches, deactivate all others plugins and test again. Also check the values from system status: http://screencast.com/t/yQGcbdjA03k the max_input_vars should be bigger than 2000 and max_execution_time at least at 300. Those values are set in php.ini file so try to access it but note that some hosts may restrict the access at this file, if you don’t have access to it contact your host provider and let him know about this situation. Also check the WP_MEMORY_LIMIT from wp-config.php file, here it’s a guide regrading this
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

Let me know how it goes!
Thanks!

Andrei L.
tagDiv Member

Hi

I’ve checked your side with different browsers and seams to work fine on my side: http://screencast.com/t/DgvfCKvkhttp://screencast.com/t/yjcyw2aRo If you still have this issue please make sure you deactivate all plugins except Visual Composer, clear all caches and test again.

Thanks!

Andrei L.
tagDiv Member

Hi

Glad you could manage to solve this issue.
Thanks for letting us know and for your message!

Andrei L.
tagDiv Member

Hi

Glad I could help, we try our best to provide the best quality themes and support. I took a look and have a nice web site.

Keep the good work and if you’ll need further instructions please let us know.
Thank you for your message!

Andrei L.
tagDiv Member

Hi

Sorry about that. I’ve tested with a 1px margin and didn’t noticed that margins. Replace the previous css with this one, it should work fine: http://screencast.com/t/sE3zNaXCz

.td-grid-group-1 .td-module-thumb, .td-grid-group-2 .td-module-thumb{
margin: 0 10px 0 0;
}
.td-grid-style-5 .td-big-grid-scroll .td-big-grid-post{
padding-top: 10px;
}
.td-grid-group-1 div:last-child{
padding-top: 10px;
}
.td-grid-style-5 .td-big-grid-scroll .td-big-grid-post:first-child{
padding-top: 0;
}
.td_block_big_grid_7 {
background-color: #fff;
}

To change the thumb’s background color try this css: http://screencast.com/t/GfF3PpTLvaBA

.td-grid-style-5 .td-module-thumb a:last-child:before{
background-color: #8D8484;
}

Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

The background ad is controlled by javascript and the class used for it is td-content-wrap: http://screencast.com/t/f6LKnoranMU

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure what grid you’re using but you can try this css for big grid 1:

.td_block_big_grid .entry-thumb {
transform: none!important;
-webkit-transform: none!important;
-moz-transform: none!important;
}

If you’re using a different grid try to adjust this class like in this example:
-for big grid 3 the class is .td_block_big_grid_3

Let me know how it goes and if you still need assistance please provide more details.
Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

The max_input_vars should be bigger than 2000 and max_execution_time at least at 300. Those values are set in php.ini file so try to access it but note that some hosts may restrict the access at this file, if you don’t have access to it contact your host provider and let him know about this situation. Also check the WP_MEMORY_LIMIT from wp-config.php file, here it’s a guide regrading this
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

Let me know how it goes!
Thanks!

Andrei L.
tagDiv Member

Hi

You need to edit the menu that you’re using for top bar and remove that items: http://screencast.com/t/aWUPzq7vmXiF

Thanks!

Andrei L.
tagDiv Member

Hi

1. @NM-user the theme blocks have fixed sizes and adding a new margin will create layout problem. Evan some default elements from VC have this margin and the best way is to add the margin manually for those which don’t have it set by default. So the margin will apply only for the specific element and won’t create layout issues. You can find the design options following this link: http://screencast.com/t/1LxD5ZQl

2. To make the titles of tabs bold try this css in theme apnel > custom css: http://screencast.com/t/Cbw363rC9P
-this is for the current tabs
.vc_tta-title-text{
font-weight: bold;;
}

this css is for deprecated tabs:
.wpb_tabs li a{
font-weight: bold;
}

3. We will release an update which will include the latest version of VC soon. At the moment we test the current plugin’s version with the theme so we make sure that works fine.

4. If you use some elements like Tabs, you will have to re-add them to your page as the VC developers have changed the classes, the design for them – http://screencast.com/t/3r1YoBw7

Thanks!

Andrei L.
tagDiv Member

Hi

Replace the above css with this one: http://screencast.com/t/wnFwycpV

.td-grid-group-1 .td-module-thumb, .td-grid-group-2 .td-module-thumb{
margin: 0 1px 0 0;
}
.td-grid-style-5 .td-big-grid-scroll .td-big-grid-post{
padding-top: 1px;
}
.td-grid-group-1 div:last-child{
margin-top: 1px
}
.td-grid-group-2 div:first-child, .td-grid-group-3 div:first-child {
padding-top: 0!important;
}
.td_block_big_grid_7 .td-module-thumb a:last-child:before{
opacity: 0.3 !important;
}

Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

To display the published time for a post you need to add some parameters in date format like here: http://screencast.com/t/FH5Ec1GHhttp://screencast.com/t/k5AuB4A9Kp

F j, Y g:i a

If you want a different format for for date and time please check this link: https://codex.wordpress.org/Formatting_Date_and_Time and change the parameter as you want.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure from where this option comes, in your Wp: http://screencast.com/t/PlArizTwoKu may be added by some plugin as on my side I don’t have such an option, I use WordPress 4.3: http://screencast.com/t/KsmboDLamo
Try to deactivate all plugins except Visual Composer and check if that option is still there.

Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom css: http://screencast.com/t/WIlobisQXp

@media(min-width: 768px){
#td-header-menu .sf-menu > li > a, .sf-menu ul .td-menu-item > a{
font-size: 8px;
font-weight: normal;
}
}
.td-header-main-menu{
height: 30px;
top: 15px;
}
.td-main-menu-logo, .sf-menu{
position: relative;
top: -5px;
}

You can modify the values as you like.
Thanks for the suggestion, I’ve added it on our list and we will consider it for next theme updates but we must choose carefully what features will implement as we have over 250 requests on our list, and the user always must get what is best from us.

Thanks!

  • This reply was modified 10 years by Andrei L..
Andrei L.
tagDiv Member

Hi

When the page is set as private will be displayed only for admin or any other user with proper capabilities and for others users WordPress will return a 404 page not found error: http://screencast.com/t/rqLjGCtyAjhttp://screencast.com/t/C1bmQHDtw
When the page is password protected will be displayed for every one which have the password for that page.

Thanks!

Andrei L.
tagDiv Member

Hi

I am not sure what you mean, please provide more details about this issue, also a screenshot pointing the issue or the site url will help.

Thanks!

Andrei L.
tagDiv Member

Hi

I’ve test the code you provided on my side and works fine: http://screencast.com/t/IwJ46gcrFpVhttp://screencast.com/t/wFvFOqrg3D Try to deactivate all plugins except Visual Composer, clear all caches and test again.

Thanks!

Andrei L.
tagDiv Member

Hi

The theme was designed to display the same image as background ad every time an user visit the site. To display different images you will probably need a js script which load a different image when the user visit the site again.
This is a complex tack which require lots of customizations in theme’s core files and I can’t provide a quick answer now. You can also try a plugin which allow you to mange the background ads but I can’t make any recommendations in this regard as we didn’t do any tests, but you can check the most popular free plugins available, maybe someone from the community who uses such a plugin may provide some feedback.
If this does not help you can look for a freelancer form sites like http://studio.envato.com/ to do it for you as unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support.

Thanks!

Viewing 25 posts - 5,226 through 5,250 (of 6,511 total)