Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 10 years, 7 months ago Ruco
    Keymaster
    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!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: style of a button

    Hello,

    You can change button style at Specular -> Styling Options -> Buttons.

    Best regards!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Creating New Custom Post and displaying through VC

    Hello,

    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!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Can't get any demo data to work properly

    Hello,

    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!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: VC Full blog Issues

    Hello,

    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!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Full height row doesn't work

    Hello,

    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!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Specular

    Hello,

    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.
    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Main Menu cant change

    Hello,

    Sorry, I don’t notice any issue on header. Please can you send me a screenshot of it?

    Best regards!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Tower theme

    Hello,

    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!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: How do I install the new update?

    Hello,

    Please can you show us the page url when this appears?

    Best regards!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Problem some time after a theme install

    Hello,

    Glad you managed to sole it. Let us know if you need further help.

    Best regards!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Top Bar align element (social bar right or left) and problem with menue

    Hello,

    Here https://www.clipular.com/c/5947344318103552.png?k=Vd3uW4Ads_QKVg0_mHygc5rcMk0 you can add the link.

    Best regards!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: sticky Menu not responsive

    Hello,

    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 resize

    1. 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!

    • This reply was modified 10 years, 7 months ago by Ruco.
    • This reply was modified 10 years, 7 months ago by Ruco.
    10 years, 7 months ago Ruco
    Keymaster
    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!

    10 years, 7 months ago Ruco
    Keymaster
    in reply to: Accordion Resizing

    Hello,

    It changes the width because it’s variable to the accordion content width.

    I fixed it with some custom css code.

    Best regards!

Viewing 15 posts - 1,921 through 1,935 (of 3,073 total)
← 1 2 3 … 128 129 130 … 203 204 205 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password