Forum Replies Created
-
in reply to: Side Navigation Content – HowTo?
Hello,
Add this code at the end of the file /js/main.js.
$(document).ready(function(){ if($('body').hasClass('page-id-1817')) $('.extra_navigation_button').click(); });Ps. These types of customizations aren’t included in theme support.
Best regards!
in reply to: Codeless Home SliderHello,
You can do that or you can create a new js function and override the old one, at Javascript field at general options.
Best regards!
in reply to: New theme update – Visual Composer FIXHello,
Please can you show us your credentials in a private reply? I will check your issues and provide a solution.
Please open new topics about the issue you have.
Best regards!
Hello,
We have fixed the issue. Please read this topic https://support.codeless.co/?topic=new-theme-update-visual-composer-fix
Best regards!
in reply to: Remove Comments Section on Blog PostHello,
Here you can add section id at Extra Class Name field at row settings. It does work.
Please check again and let us know if you still need help.
Best regards!
in reply to: Remove link from Service IconHello,
Here you can add section id at Extra Class Name field at row settings. It does work.
Please check again and let us know if you still need help.
Best regards!
in reply to: Button No IconHello,
Please can you show me your site url?
Best regards!
in reply to: Button 2 in Visual ComposerHello,
This element doesn’t exist on the latest version of VC. It’s Button(eye catching button) element of VC and there is also Button element – custom made.
Please make you sure you are running the latest theme version and the latest vs of VC.
These elements work correctly.Best regards!
Hello,
Please edit the file ‘specular/vc_templates/google_map.php’.
Find the line:$output .= '<div class="row-fluid row-google-map " style="position:'.$position.'; height:'.esc_attr($height).'px;"><iframe class="googlemap '.$extra_class.'" style="height:'.$height.'px;" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'.esc_url($dynamic_src).'&output=embed"></iframe><div class="desc">'.$desc.'</div>';and replace with:
$output .= '<div class="row-fluid row-google-map " style="position:'.$position.'; height:'.esc_attr($height).'px;"><iframe class="googlemap '.$extra_class.'" style="height:'.$height.'px;pointer-events:none" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'.esc_url($dynamic_src).'&output=embed"></iframe><div class="desc">'.$desc.'</div>';Edit the file ‘specular/js/main.js’
Add this code at the end of the file:
https://codeshare.io/VauxtThis way the map won’t zoom on window scroll, but the zoom will be enabled when clicking on map.
Best regards!
-
This reply was modified 11 years ago by
Ruco.
in reply to: Accordion Deprecated in new version?Hello,
It’s not deprecated. Please download the latest theme version and update it. Update also the Visual Composer (included in the me).
Best regards!
in reply to: Latest from Blog Element GoofyHello,
It depends on the text length you enter.
If you want them aligned add this css code:.latest_blog .blog-item .content p { min-height: 100px; } .latest_blog .blog-item .content h4 { min-height: 48px; }Best regards!
in reply to: Make Service Small Icon Link InactiveHello,
Please edit the file ‘specular/vc_templates/services_small.php’.
Find the line:
$output .= ' <h4><a href="'.esc_url($data['link']).'">'.esc_html($title).'</a></h4>';Remove the link here.
Best regards!
in reply to: Change Color Navigation MenuHello,
Please can you show us your site credentials in a private reply, so I can check your settings?
Best regards!
in reply to: Width of Sticky NavHello,
I changed the header width, with some css code.
Normally, if you want ti change the container width you can do it at Specular settings -> Layout, but it will change the content width of all the pages.
Best regards!
in reply to: Portfolio Slideshow Image SizeHello,
I suggest you to keep the changes at parent theme and update only the changes file on each theme update.
The image sizes can’t be declared at child theme.
Or you can specify the image size directly at portfolio or blog file.
Ex. Replace this:<img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), 'port4', 'url')) ?>" alt="">with:
<img src="<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id(), array(250, 250), 'url')) ?>" alt="">Best regards!
-
This reply was modified 11 years ago by