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

  • 11 years ago Mirela
    Participant
    in reply to: Mobile Logo/Menu Problem

    Hello,

    I have answered you here: https://support.codeless.co/?topic=problem-with-responsive-menu-and-logo
    Your logo is not like the demo, but with this fix it should display properly.
    Let us know if you need further help.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Mega menu positioning problem

    Hello,

    How many columns does this item have? I can see three of them perfectly (screenshot). In what screen resolution are you accessing this?

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: How to edit header

    Hello,

    I’m not quite clear on what media links in the header are you talking about. I can’t access your site either, to give a look. Can you please post a screenshot? So i can understand better.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: "invisble" visual composer elements

    Hello,

    Nice to hear that.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Small Icons with Contact Info in Header

    Hello,

    Please go to file specular\includes\register\register_shortcodes.php and find these lines:

    
    $output .= '<div class="contact_information">';
    
                if(!empty($addr)):
                    $output .= '<dl class="item dl-horizontal addr">';
                        $output .= '<dt><i class="icon-location-arrow"></i></dt>';
                        $output .= '<dd><span class="title">'.__('Our Locations', 'codeless').'</span><p>'.$addr.'</p></dd>';
                    $output .= '</dl>';

    Change here the text you want to use. To make email clickable, please find this line:
    $output .= '<dd><span class="title">'.__('Email Address', 'codeless').'</span><p>'.$email.'</p></dd>';
    replace with this:
    $output .= '<dd><span class="title">'.__('Email Address', 'codeless').'</span><p><a href="mailto:'.$email.'">'.$email.'</a></p></dd>';

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Modify Child Widget Shortcode

    Hello,

    You can change the icons in the code above. See this part: <i class="icon-location-arrow"></i> The ‘icon-location-arrow’ is the class that set’s the location icon. If you want to use another icon, just change this class. You can find a list of all available icons in file specular\admin\assets\css\vendor\elusive-icons\elusive-webfont-ie7.css.
    To change it’s size, add into your custom css box, these lines:
    .contact_information dt i { font-size: 22px; }
    It will change all three icons sizes.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Problem with Responsive menu and logo

    Hello,

    Please add these lines into your custom css box:

    @media (max-width: 979px){
    .mobile_small_menu {  margin-left: -40px;}
    }
    @media (max-width: 480px){
    #logo {  left: -25px !important;}
    }

    This should be the result: image.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Price List

    Hello,

    You have to set the link of the button to point there. It should be the full link. I edited it already. Please check your site.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Service square

    Hello,

    Please see here a screenshot of how your site looks from my side:
    services square You may want to check your chrome version and internet connection.
    Let us know.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Breadcrumb trail – Use menu name instead of title

    Hello,

    Thanks you for the feedback!

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Sticky Navigation

    Hello,

    You have installed the theme wrongly. You should have imported only the theme’s folder (specular), not all the downloaded folder (themeforest-9412083-specular-responsive-multipurpose-business-theme). This leads to errors. Please leave only the theme folder, and let us know if the issue persists.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Specular – Projects displayed without pagination

    Hello,

    Please edit the file ‘specular/includes/core/codeless_routing.php.
    Find the lines:

    function codeless_set_portfolio_query()
    	{
    		global $cl_redata;
    		
    		$terms = $cl_redata['portfolio_categories'];
    
    		$p_per_page = 6;
    		switch($cl_redata['portfolio_columns']){
    			case '1':
    				$p_per_page = 3;
    			    break;
    			case '2':
    				$p_per_page = 6;
    				break;
    			case '3':
    				$p_per_page = 9;
    				break;
    			case '4':
    				$p_per_page = 12;
    				break;
    			case '5':
    				$p_per_page = 10;
    				break;
    		}

    and replace with:

    function codeless_set_portfolio_query()
    	{
    		global $cl_redata;
    		
    		$terms = $cl_redata['portfolio_categories'];
    
    		$p_per_page = 6;
    		switch($cl_redata['portfolio_columns']){
    			case '1':
    				$p_per_page = 999;
    			    break;
    			case '2':
    				$p_per_page = 999;
    				break;
    			case '3':
    				$p_per_page = 999;
    				break;
    			case '4':
    				$p_per_page = 999;
    				break;
    			case '5':
    				$p_per_page = 999;
    				break;
    		}

    Best regards!

    • This reply was modified 11 years ago by Ruco.
    11 years ago Mirela
    Participant
    in reply to: do not show Portfolio Custom Fields

    Hello,

    I edited the code above to this:

    .row-fluid .span9 {
      width: 100% !important;
    }

    Result:
    portfolio item

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Page specific Sidebar Widgets

    Hello,

    You can create as many custom sidebars as you want. Please go to Specular > Custom Sidebar and select the page you want to have a sidebar to (screenshot). Then go to Appearance > Widgets, add widgets to the page’s newly created sidebar. Last step, go to the page and set Page Options to ON (screenshot) Now you can chose the page layout.

    Best regards!

    11 years ago Mirela
    Participant
    in reply to: Service square

    Hello,

    Sorry for the late reply.
    I can see the borders of services square are all showing correctly. Did you solve your issue? For the interactive map, please follow this link, for more information.

    Best regards!

Viewing 15 posts - 12,121 through 12,135 (of 12,542 total)
← 1 2 3 … 808 809 810 … 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