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

  • 7 years, 10 months ago Mirela
    Participant
    in reply to: Mobile problems

    Hello,

    Yes, please add this css as well inside the @media rule:

    footer#colophon .footer-widget {
        margin-bottom: 270px !important;
    }

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Youtube video thumbnail fail

    Hello,

    Yes, you can style the site for mobile. It’s the responsive css that does this (read more here). Include all mobile css under @media rule.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Logo does not support SSL

    Hello,

    Thank you for sharing your solution with the community!
    As for incorporating this in the next update, this is not my decision to make. I have notified the developers for this. They will check it and add the proper solution for ssl.
    I can not guarantee this exact code will be included. So i suggest you save the edited file in order to not have to redo the changes in case of future theme update.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: How do I remove commas on counter?

    Hello,

    Please go to file: specular\js\odometer.min.js and find this line: <span class="odometer-formatting-mark"></span>',c="(,ddd).dd", Edit it to this:
    <span class="odometer-formatting-mark"></span>',c="(ddd).dd", Save file and refresh.

    Let me know.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Homepage demo slider cant change

    Hello,

    I opened the customizer, went to the slides settings -> Row > Design > Background Image (screenshot). The changes are saved and reflecting in the site: https://postimg.cc/image/a1p8ewrtz/
    Is this what you needed to cahnge?
    Let me know.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Logo doesn\'t appear unless I scrolled down

    Hello,

    Please go to General Options > Header Options > Sticky Header > Show logo in sticky header, set this OFF.
    Let me know.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Mobile problems

    Hello,

    Glad to know you like our theme :)
    Please go to Appearance > Customize > General > Custom Codes > Custom Css, and add this code:

    @media (max-width: 480px){
    .main.header-row {
        background-color: black !important;
    }
    #logo img {
        height: 80px !important;
    }}

    Save changes and refresh.
    Let me know how it goes.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Import Template Freeze

    Hello,

    There is no way a xml file can cause the 500 internal server error. Please know that this file only contains content to be added to database and therefore add pages/posts and set up settings.

    Please add some wp and ftp credentials in a private reply. So i can check this directly.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: PORTFOLIO HOVER not displaying correctly

    Hello,

    Just change the values until you are satisfied with the result.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Homepage demo slider cant change

    Hello,

    Can you please add some wp credentials in your profile data? Read this article for more information.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: How to change the Reservation link

    Hello,

    First the shop page in Woocommerce > Settings > Products > SHop page (screenshot). Then assign sidebar layout to shop page in Appearance > Customize > Shop > . To add content, go to Appearance > Widgets and add them to shop sidebar.

    Please check your site.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Youtube video thumbnail fail

    Hello,

    You can set up the setting for image cropping in Codeless > Image Sizes.
    Or edit this single case with custom css. Try this code:

    .video-section .bg-layer {
        background-size: contain !important;
        background-repeat: repeat !important;
    }

    Result screenshot: https://postimg.cc/image/jnr2jpuo7/

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Installation Issues

    Hello,

    I can check it now. But please add the wordpress credentials, not ftp.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: PORTFOLIO HOVER not displaying correctly

    Hello,

    Add this code instead:

    .portfolio-item.overlayed .overlay .center-bar {
        margin-left: 10px !important;
        width: 80% !important;
        top: 45px !important;
    }

    Result: https://postimg.cc/image/t4gvqkjqf/
    Change the values to your wish.

    Best regards!

    7 years, 10 months ago Mirela
    Participant
    in reply to: Specular – Couple of bugs (Mobile menu, accordion)

    Hello,

    No, Ninja form is not one of our included plugins. The old accordion is a deprecated element from Visual Composer. Please use the accordion element (or faqs) in the ‘content’ group of elements of VC.

    To fix faqs, go to file js/main.js and find these lines:

    /*------------------------------ Accordion Toggle Binding ------------------------------ */  
    
    function accordionBinding(){
    	"use strict";
    	$(".accordion-group .accordion-toggle").live('click', function(){
    		var $self = $(this).parent().parent();
    		if($self.find('.accordion-heading').hasClass('in_head')){
    			$self.parent().find('.accordion-heading').removeClass('in_head');
    		}else{  
    			$self.parent().find('.accordion-heading').removeClass('in_head');
    			$self.find('.accordion-heading').addClass('in_head');
    		}
    	});
    }
    /*------------------------------ Accordion Toggle Binding FAQs------------------------------ */  
    
    function accordionBindingFaqs(){
    	"use strict";
    	$(".accordion-group .accordion-toggle").live('click', function(){
    		var $self = $(this).parent().parent();
    		if($self.find('.accordion-heading').hasClass('in_head')){
    			$self.parent().find('.accordion-heading').removeClass('in_head');
    		}else{  
    			$self.parent().find('.accordion-heading').removeClass('in_head');
    			$self.find('.accordion-heading').addClass('in_head');
    		}
    	});
    }

    Replace the first block with these lines:

    /*------------------------------ Accordion Toggle Binding ------------------------------ */  
    
    function accordionBinding() {
        "use strict";
        $(".accordion-group .accordion-toggle").live('click', function() {
            var $self = $(this).parent().parent();
            if ($self.find('.accordion-heading').hasClass('in_head')) {
                $self.parent().find('.accordion-heading').removeClass('in_head');
            } else {
                $self.parent().find('.accordion-heading').removeClass('in_head');
                $self.find('.accordion-heading').addClass('in_head');
            }
        });
    }

    And remove (comment out) the entire second block:

    /*------------------------------ Accordion Toggle Binding FAQs------------------------------ */  
    
    function accordionBindingFaqs(){
    	"use strict";
    	$(".accordion-group .accordion-toggle").live('click', function(){
    		var $self = $(this).parent().parent();
    		if($self.find('.accordion-heading').hasClass('in_head')){
    			$self.parent().find('.accordion-heading').removeClass('in_head');
    		}else{  
    			$self.parent().find('.accordion-heading').removeClass('in_head');
    			$self.find('.accordion-heading').addClass('in_head');
    		}
    	});
    }

    Save changes and refresh page.

    -Can you send us some ftp so i can check the mobile menu issue. Or enable ‘Editor’ menu under Appearance menu.
    Let me know.

    Best regards!

Viewing 15 posts - 2,566 through 2,580 (of 12,542 total)
← 1 2 3 … 171 172 173 … 835 836 837 →

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