Forum Replies Created
-
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!
in reply to: Mega menu positioning problemHello,
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!
in reply to: How to edit headerHello,
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!
in reply to: "invisble" visual composer elementsHello,
Nice to hear that.
Best regards!
in reply to: Small Icons with Contact Info in HeaderHello,
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!
in reply to: Modify Child Widget ShortcodeHello,
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!
in reply to: Problem with Responsive menu and logoHello,
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!
in reply to: Price ListHello,
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!
in reply to: Service squareHello,
Please see here a screenshot of how your site looks from my side:
You may want to check your chrome version and internet connection.
Let us know.Best regards!
in reply to: Breadcrumb trail – Use menu name instead of titleHello,
Thanks you for the feedback!
Best regards!
in reply to: Sticky NavigationHello,
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!
in reply to: Specular – Projects displayed without paginationHello,
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.
in reply to: do not show Portfolio Custom FieldsHello,
I edited the code above to this:
.row-fluid .span9 { width: 100% !important; }Result:

Best regards!
in reply to: Page specific Sidebar WidgetsHello,
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!
in reply to: Service squareHello,
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!
-
This reply was modified 11 years ago by
You may want to check your chrome version and internet connection.