Forum Replies Created
-
in reply to: Codeless Slider responsive?
Hello,
Please edit he file ‘specular/js/main.js’, find the lines:
/* ----uncomment this if you want a min height for slider on responsive */ /* if($(window).width() < 767){ var window_width = $(window).width(); var new_height = (window_width * height) / 767; $('.codeless_slider_wrapper', parent).css('min-height', new_height+'px'); parent.css('min-height', new_height+'px'); parent.height(new_height+'px'); slider.height(new_height+'px'); } */and replace with:
if($(window).width() < 767){ var window_width = $(window).width(); var new_height = (window_width * height) / 767; $('.codeless_slider_wrapper', parent).css('min-height', new_height+'px'); parent.css('min-height', new_height+'px'); parent.height(new_height+'px'); slider.height(new_height+'px'); }(just remove the comments)
If you want to hide the slider on responsive please refer to this topic https://support.codeless.co/forums/topic/how-to-turn-off-slider-on-mobile-but-not-desktop-home-page/
Best regards!
in reply to: style of a buttonHello,
You can change button style at Specular -> Styling Options -> Buttons.
Best regards!
in reply to: Creating New Custom Post and displaying through VCHello,
You want to create a new element in visual composer or a new custom post type like the staff?
After adding the element at codeless_elements.php, you must create a file at vc_templates folder with the name, the element name(the one you added at codeless_elements.php). Or just copy the testimonial_carousel.php file and make the changes you want at vc_templates.
Best regards!
in reply to: Can't get any demo data to work properlyHello,
Did the demo data install correctly? Then you can continue customizing it s you want. Fist assign the main menu navigation an make sure you have set the homepage and blog page at Specular -> general options. Can you show me your site url, so I can see on which point you are on setting up the theme?
I can set it as the demo, just provide us admin credentials in a private reply.
best regards!
in reply to: VC Full blog IssuesHello,
Sorry for the inconvenience. We will fix it in the next theme update. It will be available very soon. The styles for the blog are working fine at Blog page. You can set the blog page at general settings and select the blog style at Bog Config at Specular panel.
Best regards!
in reply to: Full height row doesn't workHello,
I don’t see any column not aligned with each other. Please can you show me a screenshot?
Are you talking about this line with colors bg https://www.clipular.com/c/6352962052947968.png?k=dNz9aGwPieHf1m6JEnKarxcriew?
This is an empty row with fullwidth content.
Let me know.
Best regards!
in reply to: SpecularHello,
This is the file to edit. Find this line
$output .= '<dd><span class="title">'.__('Our Locations', 'codeless').'</span>'.$addr.' </dd>';Change ‘Our Location’. It must work.
If not, please provide us the necessary credentials in a private reply, I can do it for you.
Best regards!
-
This reply was modified 10 years, 7 months ago by
Ruco.
in reply to: Main Menu cant changeHello,
Sorry, I don’t notice any issue on header. Please can you send me a screenshot of it?
Best regards!
in reply to: Tower themeHello,
What error do you get?
Try to upload it via FTP.
Please read this documentation part about theme installation https://codeless.co/documentation/main.html#theme_install
If you still need help please provide us your WP and FTP credentials in a private reply we can install it for you.
Best regards!
in reply to: How do I install the new update?Hello,
Please can you show us the page url when this appears?
Best regards!
in reply to: Problem some time after a theme installHello,
Glad you managed to sole it. Let us know if you need further help.
Best regards!
Hello,
Here https://www.clipular.com/c/5947344318103552.png?k=Vd3uW4Ads_QKVg0_mHygc5rcMk0 you can add the link.
Best regards!
in reply to: sticky Menu not responsiveHello,
You want the sticky menu on responsive, or you want it on window re-size?
Please edit the file ‘/js/main.js’.
To show the sticky header on window resize1. Add this line:
if($('body').hasClass('sticky_active') && $window_width >= 980) codelessStickyNav();after the line 162:
after this:
$(window).resize(function(){ "use strict";
To show the sticky header on responsive
1. If you want the sticky on responsive then add this one below line 162:if($('body').hasClass('sticky_active')) codelessStickyNav();Also at line 132, replace the condition with this code:
if($('body').hasClass('sticky_active'))2. Add this css code at custom css box
.sticky_active .header_wrapper, .header_4 .header_wrapper { position: fixed !important; }Best regards!
in reply to: thickness of the circle of "Service Circle Icon"Hello,
You must change also the border width on hover. Use this css code:
.services_medium.style_3:hover .icon_wrapper { border: 1px solid #00e59c !important;//change the color here }Best regards!
in reply to: Accordion ResizingHello,
It changes the width because it’s variable to the accordion content width.
I fixed it with some custom css code.
Best regards!
-
This reply was modified 10 years, 7 months ago by