Forum Replies Created
-
AuthorPosts
-
Hey!
Please review the documentation and download the child theme files: http://kriesi.at/documentation/enfold/using-a-child-theme/
I checked the Appearance > Themes panel but there is no child theme there.
Cheers!
IsmaelSeptember 22, 2015 at 7:07 am in reply to: Enfold Photography Portfolio – Issue after Theme update #506796Hi!
Try to add this in the Quick CSS field:
@media only screen and (max-width: 989px) { p.lgs, .sdinfo { display: none; } }
Regards,
IsmaelHi!
Can you please post the whole error? What file is it referring to? Replace the code with this:
<?php if(preg_match('/(?i)msie [8-11]/',$_SERVER['HTTP_USER_AGENT'])) { echo '<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>'; } ?>
Don’t forget to remove browser cache.
Cheers!
IsmaelHi!
I checked the other languages in the site and it looks OK. The images are there including the layer sliders and the background. It must be a cache issue.
Regards,
IsmaelSeptember 22, 2015 at 6:35 am in reply to: Post display issue since the last wordpress update to Version 4.3.1. #506790Hi!
Please try to add this in the functions.php file:
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); }, 1500); $(window).load(function () { setTimeout(function() { clearInterval(int); }, 1000); }); })(jQuery); </script> <?php }
Remove browser cache then reload the page.
Regards,
IsmaelHi!
Try to use this:
/* Enable Social Share Buttons */ add_filter('avf_title_args', 'avia_add_social_toolbar_template_builder', 10, 2); function avia_add_social_toolbar_template_builder($args, $id) { ob_start(); avia_social_share_links(array(), false); $social = ob_get_clean(); $args['additions'] .= $social; return $args; }
Add this in the Quick CSS field:
.title_container .av-share-box { width: 30%; }
Best regards,
IsmaelHi!
Try to remove any “greater than” or “less than” symbol in the page. Example: “with <5 m tall”
Replace it with the html entity code: http://www.w3schools.com/html/html_entities.asp
Best regards,
IsmaelHi!
If you want to force the arrows to display, modify config-templatebuilder > avia-shortcodes > slideshow.php. Look for this code around line 532:
if($this->slide_count > 1) { $html .= $this->slide_navigation_arrows(); $html .= $this->slide_navigation_dots(); }
.. replace it with:
if($this->slide_count > 0) { $html .= $this->slide_navigation_arrows(); $html .= $this->slide_navigation_dots(); }
We replace “1” with “0”.
Cheers!
IsmaelSeptember 22, 2015 at 6:02 am in reply to: Removing date/time (other META info) from social shares #506783Hi!
I’m pretty sure you can’t find the page meta info on a template file inside the theme, try to check the page.php or includes > loop-page.php file. You can perhaps modify the database, look for the pages in wp_posts table and remove the meta infos. If you’re not familiar with wp databases, this is going to be impossible and it might break the page structure. Have you tried asking the linkedin community regarding this? I’m not sure how they fetch the url data. I’ll ask the rest of the support team to check it.
Cheers!
IsmaelHi!
Yes, please give us the login details and a screenshot of what you’re trying to adjust. Use imgur or dropbox. The solution on the previous link will decrease the thumbnail size but it will not affect the actual height of the masonry items. Try to use this in the Quick CSS field instead:
.av-fixed-size .av-masonry-entry .av-inner-masonry-sizer { padding-bottom: 60%; }
Best regards,
IsmaelHey!
Alright. Please replace the code with this:
@media only screen and (max-width: 767px) { #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 { line-height: 3em; } }
Did you add a negative margin to those columns? Try to add this inside the css media query above:
.flex_column.av_one_half { margin-bottom: 20px !important; }
Regards,
IsmaelHi inchmasterflex!
Thank you for using Enfold.
1.) You have this css code in the Quick CSS field:
.current-menu-item>a>.avia-menu-text { color: white !important; }
.. replace that with:
.current-menu-item>li>a>.avia-menu-text { color: white !important; }
2.) You can only display the banner on the shop overview page and the product category pages.
3.) Use this css code:
.current_page_parent > a { color: red !important; }
4.) Try this one:
ul[data-success="was added to the cart"] .cart_dropdown_first a { background-color: black; color: white !important; }
If possible, please create a single thread for each inquiries so that we can focus on your question and it will be easier for other users searching for the same solution.
Regards,
IsmaelSeptember 22, 2015 at 4:41 am in reply to: Colour section not taking CSS into account from section 5 on #506778Hey!
What happens when you place the columns inside a color section element?
Best regards,
IsmaelHi!
What is the final code that you use? Might help others who want to do the same thing.
Regards,
IsmaelHey!
You also have a category called “News” so they have the same slug. We modified the “News” category slug for you: http://www.garaggge.com/news/
Best regards,
IsmaelSeptember 21, 2015 at 9:40 am in reply to: Shopping cart is always showing on mobile, copyright text not fit on iPhone 5s #506299Hey!
1.) Please remove browser cache or hard refresh the page after you add the code suggested above. You can also try this:
@media only screen and (max-width: 480px) { .responsive .logo img { max-height: 50px !important; } }
Adjust the max height value if necessary.
2.) Add this code inside the media query above.
#socket .copyright { float: none; }
End code should be:
@media only screen and (max-width: 480px) { .responsive .logo img { max-height: 50px !important; } #socket .copyright { float: none; } }
Cheers!
IsmaelHey!
@SmoovP: Glad the advance layout builder is now working on your installation. It’s probably a cache issue.
@mbroooshkey: Aside from the ftp login credentials, we also need to access the dashboard to test the advance layout builder. Please post those details here as well. I tested some of the login credentials you provided on the previous post but they are not working.Also, try to check the Settings > General panel. Make sure that the url in the WordPress Address (URL) and the Site Address (URL) fields are completely the same.
Best regards,
IsmaelHey!
For portfolio items, try this:
.postid-593 .av-masonry-image-container { background-size: 100% 100%; }
Best regards,
IsmaelSeptember 21, 2015 at 9:25 am in reply to: Show category image and description on all paginated pages #506287Hey!
You can enable the theme’s shop banner. Go to Enfold > Shop Options panel then enable the “Enable Banner for product category pages”. Edit the product category, look for the Enfold Category Styling settings then set it to the second option.
Cheers!
IsmaelHi!
It is because of this css modification:
#top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 { color: #4ea3bd; font-size: 35px; font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: lighter; text-transform: uppercase; }
Try to add the line-height property:
#top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 { color: #4ea3bd; font-size: 35px; font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: lighter; text-transform: uppercase; line-height: 3em; }
Regards,
IsmaelSeptember 21, 2015 at 9:08 am in reply to: How to make the blog post style like other pages? #506279Hi maschera!
Thank you for using Enfold.
I’m sorry but it’s not possible to add full width elements in the post unless you use the advance layout builder. If you don’t want to recreate the layout of a certain post or page, you can save it as a template (top right of the advance layout builder). You can then apply this template in other post then change the content accordingly.
Cheers!
IsmaelHey!
The css codes are actually working. Please remove browser cache or hard refresh the page.
Best regards,
IsmaelHi!
I’m sure you’re familiar with the custom css class field now. Please add a custom css class attribute to that image then apply the css properties above. :)
Best regards,
IsmaelHi!
Can you please provide a link to the actual page with the contact form? We would like to check it.
Best regards,
IsmaelHi!
We added the code for you. You can find it right after the copyright field: http://erodog.com/
Regards,
IsmaelHey!
If you want to add a sort feature on the masonry element, edit the posts or portfolio items then add categories. These categories will be automatically added as sort items.
Best regards,
IsmaelHey!
Note that bumping or answering your own thread will push it at the end of the queue and we won’t be able to answer it immediately. We updated the page for you. The video should automatically play now. Please remove browser then reload the page: https://sheffield-hypnosis.co.uk/
Best regards,
IsmaelHey!
Edit the Fullwidth Sub Menu element then set the Mobile Menu Display to display a button instead of the default menu layout. I suggested this again because it will create a mobile button, when tap, list all the menu items without a sub menu.
Cheers!
Ismael -
AuthorPosts