Forum Replies Created
-
in reply to: pageable container
Hello,
Sorry but i am not following. Where do you have these dots? I see the preview of the back-end is showing what it’s supposed to.
See screenshot. Can you explain better what is wrong here?Best regards!
in reply to: Responsive List Elements SpacingHello,
That difference is to differ the columns content from one another. To reduce it to the same as other list elements, add this code itno your custom css box:
@media (max-width: 767px){ .vc_column { margin-bottom: 10px !important; }}Result screenshot.
Let us know.Best regards!
in reply to: Update of the theme to support Woocommerce 3Hello,
Yes, we are already working on a new update. It will include the new version of Woocommerce as well.
Please look forward to it! You will be notified for the release via email.Best regards!
in reply to: blog Masonry – how to show more textHello,
In the same file \includes\view\blog\loop-grid.php i edited out this line:
echo codeless_text_limit(get_the_content(), 40);
to this:
echo codeless_text_limit(get_the_excerpt(), 60);
Your posts have more excerpt that is why there was not being shown much text even if you increased the number of words to display.
Please check your blog, it already is showing up more text.
Let us know if you need further help.Best regards!
in reply to: Unable To Update ThemeHello,
Did you try uploading theme files thru ftp? What error message are you receiving? DO you have many third party plugins installed? Please deactivate them all before attempting to update theme.
If you want send us some valid wp and ftp credentials in a private reply. So we can give it a closer look.Best regards!
in reply to: Codeless Slider / order of the slidesHello,
Yes, you can reorder them but you will need to install a custom plugin for it. Like “Post Type Order“.
You can use it to reorder any custom type post such as portfolio items, posts and codeless slider slides.Best regards!
in reply to: blog Masonry – how to show more textHello,
Are you sure you made the changes correctly? This is a tested solution and it does work. Please create a test account for us to be able to login into your wp dashboard. So i can check what is not correct in your side.
Send us the credentials in a private reply or fill in your profile data.
Read this article for more information.Best regards!
in reply to: Keeping Top Bar on mobileHello,
You were halfway throw. Edit the code above to this:
@media (max-width: 480px){ .top_nav { display: block !important;} .top_nav .container { width: 360px !important; margin-left: 1px !important; } }Result screenshot: https://pho.to/Afpm7
Let us know.
Best regards!
in reply to: Unable To Update ThemeHello,
Please read here how to update theme: https://codeless.co/tower/documentation/main.html#update_theme
After updating theme successfully you can proceed with Visual Composer update. Read this article for more guidance: https://support.codeless.co/?ht_kb=visual-composer-updateLet us know.
Best regards!
in reply to: Footer font colorsHello,
Please add this code itno your custom css box:
footer#footer, footer#footer .contact_information dd .title { color: #b4b4b4 !important; }Let us know.
Best regards!
in reply to: portfolio sorting issueThis reply has been marked as private.Hello,
You can download the very latest theme version from your Envato account > Downloads. just like you downloaded it the first time. The copy that will download will always be the latest version we have uploaded.
As for the Visual Composer, there is no need to update on your own. Just make sure to have installed only the included in theme copy. We frequently update it.
Read this article to understand how to do it: https://support.codeless.co/?ht_kb=visual-composer-updateLet us know.
Best regards!
in reply to: specular estate – slider homeHello,
As stated in my last reply, the slider in the demo homepage is a Layer slider. I already imported it for you and assigned to the default home page: https://www.sarment.be/sample-page-2/
To assign it to the front page you have just go to the page’s General Settings > Slider Options > Select Slider (screenshot)
Select the only available slider and save changes.
ps: I already changed that for you. Let us know.Best regards!
in reply to: How to move main menuHello,
Yes, you can achieve this layout using custom css. Ad the code into your custom css box in General Options. Please know that this is a personal preference styling and for so it’s not included in support service.
Best regards!
in reply to: blog Masonry – how to show more textHello,
Sorry for the late reply.
To add more lines to the masonry blog posts, please go to file \includes\view\blog\loop-grid.php and find these lines:<div class="text"> <?php if($post_format == 'video' || $post_format == 'audio') echo codeless_text_limit(get_the_content(), 20); else echo get_the_excerpt();Edit to this:
<div class="text"> <?php if($post_format == 'video' || $post_format == 'audio') echo codeless_text_limit(get_the_content(), 20); else echo codeless_text_limit(get_the_content(), 20);The number 20 is the number of words to display. Edit it to your wish.
Let us know.Best regards!