Forum Replies Created
-
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!
in reply to: Youtube video thumbnail failHello,
Yes, you can style the site for mobile. It’s the responsive css that does this (read more here). Include all mobile css under
@mediarule.Best regards!
in reply to: Logo does not support SSLHello,
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!
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!
in reply to: Homepage demo slider cant changeHello,
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!
in reply to: Logo doesn\'t appear unless I scrolled downHello,
Please go to General Options > Header Options > Sticky Header > Show logo in sticky header, set this OFF.
Let me know.Best regards!
in reply to: Mobile problemsHello,
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!
in reply to: Import Template FreezeHello,
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!
in reply to: PORTFOLIO HOVER not displaying correctlyHello,
Just change the values until you are satisfied with the result.
Best regards!
in reply to: Homepage demo slider cant changeHello,
Can you please add some wp credentials in your profile data? Read this article for more information.
Best regards!
in reply to: How to change the Reservation linkHello,
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!
in reply to: Youtube video thumbnail failHello,
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!
in reply to: Installation IssuesHello,
I can check it now. But please add the wordpress credentials, not ftp.
Best regards!
in reply to: PORTFOLIO HOVER not displaying correctlyHello,
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!
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!