Forum Replies Created
-
This reply has been marked as private.in reply to: Accordion Deprecated in new version?
Hello,
Sorry for the inconvenience, this is due to the Visual Composer recent update. We are working on it and will release a theme update shortly.
We kindly require for your patience.Thank you!
in reply to: Codeless Home SliderHello,
Yes, please go to file js\main.js and find these lines:
$('.codeless_slider').imagesLoaded(function(){ $loading.css('display', 'none'); codelessSlider = new Swiper('.codeless_slider',{ slidesPerView: slide_per_view, paginationAsRange: false, loop: false,Change the
loop:falsetotrue.Best regards!
in reply to: Side Navigation Content – HowTo?Hello,
By ‘one Site’ you mean one website or one page?? The extra side navigation icon is set in the right-end of the main menu. If you want to display it only in one page, you can achieve this by adding some css code. Send me the link of the page you want to let it visible and i’ll give you the proper css code to add.
To make it open by default, go to file js\main.js and find these lines:function codelessExtraNav(){ "use strict"; $('.extra_navigation_button').click(function(){ if($('body').hasClass('open_extra_nav')){ $('body').removeClass('open_extra_nav'); }else $('body').addClass('open_extra_nav'); });Replace with these:
function codelessExtraNav(){ "use strict"; $('body').addClass('open_extra_nav'); $('.extra_navigation_button').click(function(){ if($('body').hasClass('open_extra_nav')){ $('body').removeClass('open_extra_nav'); }else $('body').addClass('open_extra_nav'); });Best regards!
in reply to: Adding an id to a headingHello,
Can you please explain better? The example you gave it’s only a link of this topic.
Best regards!
in reply to: Revolution Slider not working in FirefoxThis reply has been marked as private.in reply to: Remove Comments Section on Blog PostHello,
The css provided, removes the comment section below single posts (example). To remove the comments count however, you need this one:
.blog-article.standard-style .info li:nth-child(3) { display: none; }And the second css, if you tried it, you would see that it will remove only the blank space. Not the shares button (result)
Best regards!
Hello,
Please go to file \includes\view\blog\loop-fullscreen.php and find this line:
<article id="post-<?php echo the_ID(); ?>" <?php echo post_class('fullscreen-blog-article section'); ?> style="background-image:url('<?php echo esc_url(codeless_image_by_id(get_post_thumbnail_id()), '', 'url') ?>');">Replace with this:
<article id="post-<?php echo the_ID(); ?>" <?php echo post_class('fullscreen-blog-article section'); ?> style="background-image:url('<?php echo esc_url(wp_get_attachment_url( get_post_thumbnail_id($post->ID) )) ?>');">
This will make the featured image as background image in the fullscreen innovative style.Best regards!
in reply to: Translate "Read More" on BlogpageHello,
Please make sure you have the files:
de.po
de.mo
en_US.po
en_US.moin ‘specular/lang’ folder and you have translated the read more.
Best regards!
in reply to: Responsiveness + MenuHello,
The above does not affect the iphone style. This code:
@media (max-width: 480px)and@media (max-width: 767px)are responsible for the iphone. Add here any margin attribute you need.I am fixing this for you this time too, but please keep in mind that these are css customizations you should do yourself.
I added this code:@media (max-width: 767px){ .wpb_column .wpb_wrapper { margin-left: 6px;} }Best regards!
in reply to: Portfolio page grid image sizeHello,
What theme are you using? It is not possible for the functions.php not to have those lines. Please check more carefully, or send us your wp credentials in a private reply, so we can give it a closer look.
Best regards!
in reply to: Width of Sticky NavHello,
Please add these lines into your custom css box:
header#header .container { width: 957px !important; }Best regards!
Hello,
Please make sure you have completed the set up. After importing the demo data, you should set up the home page and blog. Edit the menu with the items you want..etc. If you want, you can send us your wp credentials in a private reply. And we will give it a closer look.
Best regards!
in reply to: Specular Pages Lose Layout After SaveThis reply has been marked as private.in reply to: Centering Clients – but how?Hello,
To center your clients, please add this code into your custom css box:
.clients .item { margin-left: 50px; }To make open in new tab, please go to file vc_templates/clients.php and find this line:
$output .= '<a href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'">';
Replace with this:
$output .= '<a target="_blank" href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'">';Best regards!