Forum Replies Created
-
in reply to: Blog post page image dimensions
Hello,
Please read this article on how to change images dimensions. The dimensions you should change for the blog featured image are these:
add_image_size( 'blog', 825, 340, true );Best regards!
in reply to: Posts Excerpt LengthHello,
Sorry for the late reply.
-What type of blog are you using? To change the “Full Blog” excerpt text length, you have to edit one of these files:
includes/view/blog/loop-grid.php
includes/view/blog/loop-index.php
includes/view/blog/loop-second-style.php
includes/view/blog/loop-timeline.phpFind 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(); ?> </div>replace this line:
echo get_the_excerpt();
with thisecho codeless_text_limit(get_the_excerpt(), 20);
The value “20” means that there will be displaying up to 20 words from excerpt. Increase it to show more text.-The “Post Masonry Grid” is a Visual Composer element not overwritten by theme code. So to edit it’s excerpt text length, you have to edit the plugins files.
Best regards!
in reply to: Slider RevolutionHello,
The code provided takes care only of the extra white space. It edits it to be the same height as your current slider. It does not change the slider. Any code inside the @media rule block is addressed to mobile devices. So if you want other changes for it you should add the new css inside this block for it to be effective only on mobile.
What do you want to change in the slider? I see it is in proportion with the desktop version.
Let us know.Best regards!
in reply to: dummy data not downloadingHello,
Please send us your wp and ftp credentials in a private reply. So we can give it a closer look for you.
Best regards!
in reply to: "Recent news" visual composer componentGlad to know it’s ok.
Bests!
in reply to: Responsive Logo size issuesHello,
Your logo image has different dimensions from the demo one. Since it is bigger, it may need css edit to be just like you want it to.
Please do not alter style.css file in parent theme as it will prevent you from taking future updates. Add all custom css code into your Custom Css box located in General Options.
Please add this code:@media (max-width:480px){ #logo img { top: 29% !important; left: 11% !important; }}It will center your logo in mobile. Edit the values to your wish.
Best regards!
Hello,
Do you have the latest theme release? Please make sure to have updated theme to it’s latest version(1.9) and then proceed with Visual composer and Envato plugin update. Read this article for more information.
Let us know.Best regards!
in reply to: logo in the mobile phoneHello,
The mobile header is independent of the style chosen for desktop. So if you want to change the alignment of it in mobile then add this code into your custom css box:
@media (max-width: 480px){ .header_10 #logo { left: 37% !important;} }Best regards!
in reply to: Service Circle Icon Element and Bullet pointsHello,
Please know that these are not issues, but rather personal preference styling. To change the font size and margin, add this code into your custom css box:
.services_medium .list li.simple { font-size: 17px !important; } .vc_col-sm-10.wpb_column.column_container.with_padding { margin-top: -55px !important; }Edit the values to your wish. Let us know.
Best regards!
in reply to: image galleryHello,
Please add this code too:
.flexslider { border: none !important; box-shadow: none !important; }Best regards!
in reply to: Cannot Edit Social Media LinksHello,
Redux Framework is a key element on our theme structure and it has been tested multiple times. We do not have the issue with socials on our side. So there must be some other conflict in your site. Perhaps one of your other installed plugins is not compatible with it. Please try to disable all third party plugins and try again.
Let us know how it goes.Best regards!
in reply to: Menu doesn’t appear on mobile versionHello,
Please add this code into your custom css box:
@media (max-width: 767px){ .header_wrapper .row-fluid .span12 { width: 100% !important; } .menu-small ul.menu > li > a {color: #ca0d0d !important;} }Let us know.
Best regards!
Hello,
@yianni88,
Sorry but is not possible to assign an accordion section to the menu and use as a normal one page menu. The only available id’s are that of the rows as instructed in our video tutorial for one page layout setup.Best regards!
in reply to: Top Nav Content into mobileHello,
You can do that with some custom css. Try this code:
@media (max-width: 767px){ .top_nav {display: block !important;} }Let us know.
Best regards!
in reply to: Sidebar is not displayedHello,
The sidebar is there but is empty. Did you add any widgets to it? Please send us the wp credentials of this site. So we can give a closer look.
Best regards!