Forum Replies Created
-
AuthorPosts
-
September 19, 2018 at 9:27 am in reply to: problem with the mobile presentation of a video in a full-image slider #1011679
Hi,
You should enable the sky image’s loop or middle transition. Set the image’s opacity to 0 so that it fades out after a few seconds.
Best regards,
IsmaelHi,
Thank you for the info. I can’t modify the functions.php file via Appearance > Editor panel though. Please post the FTP details in the private field.
Best regards,
IsmaelHi,
Ok. I can the see it on a tablet view. This css code will prevent that but the word in a sentence or paragraph may be broken at any character.
p { word-break: break-all; }Best regards,
IsmaelHi,
Thanks for the update.
Is the css code active? I can’t seem to reproduce the issue on my end. Did you copy the content from another source? You should inspect the markup and check if there are extra tags like paragraph or line breaks.
Screenshot: https://imgur.com/a/RtHjxqQ
Best regards,
IsmaelSeptember 19, 2018 at 3:59 am in reply to: Disabling of template builder elements issue met customisations and widgets #1011596Hi,
I think you see that notice because your shortcode is not recognized by the builder manager. Again, you can replace that shortcode with theme’s Page Content because that element was specifically created to show the content of a particular post or page.
Best regards,
IsmaelHi,
I don’t really think this can be considered as a bug because that is the default style of the generated color section. If you don’t want to see that border, wrap the separator inside a color section and then disable the top and bottom border style.
Best regards,
IsmaelHi,
Ok. I am able to reproduce the issue on Chrome, Windows 8. Please provide the login details in the private field so that we can test the script.
Best regards,
IsmaelHi,
Thanks for the update. You can add this css code to set a minimum height for the masonry content or title container.
.av-masonry-entry .av-inner-masonry-content { height: 79px; }The height varies because the title breaks to a second line.
Best regards,
IsmaelHi,
Sorry for the late reply. I would like to revert the changes but I got locked out because of WordFence. I set the front and blog pages in the Enfold > Theme Options panel for both languages and then reset the Settings > Reading options to default. That’s all I did.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Based on Dude’s suggestion, you can try this code on the functions.php file to adjust the map’s parameter.
add_filter('avf_gmap_vars', 'avf_gmap_vars_settings', 10, 1); function avf_gmap_vars_settings($map) { foreach($map['av_google_map'] as $key => $data) { $map['av_google_map'][$key]['gestureHandling'] = 'auto'; $map['av_google_map'][$key]['scrollwheel'] = 'true'; } return $map; }Best regards,
IsmaelHi,
Yes, that could be the setup. You should include the custom link or language switcher in your main menu or put it on the area of the site where it’ll be noticeable. You can include a country flag beside the menu name or label.
Best regards,
IsmaelHi,
Thanks for the update. You can use this css code.
.avia_transform .avia_start_delayed_animation.right-to-left { -webkit-animation: avia-rtl 0.8s 1 3s cubic-bezier(0.175,0.885,0.320,1.275); animation: avia-rtl 0.8s 1 3s cubic-bezier(0.175,0.885,0.320,1.275); opacity: 1; }Best regards,
IsmaelSeptember 19, 2018 at 2:52 am in reply to: problem with the mobile presentation of a video in a full-image slider #1011585Hi,
I would like to access the layer slider but the site is down when I checked. I got a 503 error. Please contact your hosting provider.
Best regards,
IsmaelSeptember 18, 2018 at 9:43 am in reply to: Displaying and Not Displaying Categories, Comment Count, Post Date, Author, etc. #1011164Hey acelam714,
Thank you for using Enfold.
The “Blog meta elements” settings will not affect the grid layout because that specific style is using a different template. You can add this css code on the Quick CSS field to remove the category container.
.html_elegant-blog #top .avia-content-slider .blog-categories { display: none; }Best regards,
IsmaelHi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
We adjusted the code a bit. Please test it a few times.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ $('.grid-sort-container').on('click', '.grid-entry', function() { setTimeout( function() { console.log('resize'); $(window).trigger('av-content-el-height-changed'); }, 1500); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_auto_resize_dude'); function ava_auto_resize_dude(){ ?> <script> (function($){ var int = window.setInterval(function(){ console.log('tick'); $(window).trigger('resize'); $(window).trigger('av-content-el-height-changed'); }, 1000); $(window).on('load', function() { clearInterval(int); }); })(jQuery); </script> <?php }Best regards,
IsmaelSeptember 18, 2018 at 9:23 am in reply to: Featured images on blog index page suddenly changed alignment #1011157Hi,
Thanks for the update. Please try this css code.
.avia-image-overlay-wrap a.avia_image{overflow: hidden; } .avia-image-overlay-wrap a.avia_image .image-overlay{-webkit-transform: scale(1.5); -ms-transform: scale(1.5); transform: scale(1.5);}Don’t forget to toggle the Enfold > Performance > File Compression options after adding the code.
Best regards,
IsmaelSeptember 18, 2018 at 9:06 am in reply to: How can i hide other portfolio items when 1 on them opened on ajax preview? #1011150Hey AndreyRasklad,
Thank you for using Enfold.
Just add this css code on the Quick CSS field.
#top .open_container + .grid-sort-container { display: none; }Don’t forget to remove the browser cache or do a hard refresh prior to checking the page.
Best regards,
IsmaelHi,
Did you update the theme just recently? If you see the issue again, edit the page and then update it. That should fix the issue. (see private field)
Best regards,
IsmaelHi,
Thanks for the update.
Try to adjust the css code a bit.
.av_minimal_header_shadow { box-shadow: none !important; }Best regards,
IsmaelHey flylanddesigns,
Thank you for using Enfold.
Did you set that page as the base shop page in the WooCommerce > Settings panel? That page is considered as archive page so you have to enable the “Sidebar on Archive Pages” from the Enfold > Sidebar Settings panel.
Best regards,
IsmaelHi,
Thank you for the info.
We modified the script in the functions.php file. The script removes the inline css as @mike said.
function ava_remove_wcc_inline_syle(){ ?> <script> (function($) { $(window).on('wcc-remove-style', function() { $(".wcc-settings-meta-box #tab-main").removeAttr("style"); $(".wcc-settings-meta-box #tab-category").removeAttr("style"); $(".wcc-settings-meta-box #tab-post").removeAttr("style"); $(".wcc-settings-meta-box #tab-templates").removeAttr("style"); $(".wcc-settings-meta-box #tab-notes").removeAttr("style"); $(".wcc-settings-meta-box #tab-import-export-settings").removeAttr("style"); }); var int = setInterval(function() { console.log('tick'); $(window).trigger('wcc-remove-style'); }, 1000); $(window).on('load', function() { clearInterval(int); }); })(jQuery); </script> <?php } add_action('admin_head', 'ava_remove_wcc_inline_syle');Best regards,
IsmaelSeptember 18, 2018 at 8:14 am in reply to: Can't remove space between images in Flexible Masonry #1011133Hey Jurriaan,
Thank you for using Enfold. Glad to hear that you like it. :)
You can use this css code to adjust the size of the image.
.av-masonry-image-container img { margin: 0; object-fit: cover; width: 100%; }Best regards,
IsmaelHi,
Thanks for the update. We selected a larger version of the image or thumbnail. If you want to adjust it, edit the image element, click on the current image and then select the image again under the Media Library tab. Look for the “ATTACHMENT DISPLAY SETTINGS” and set the “Size” accordingly. Right now, it is set to “Large (646x1030px)”.
Best regards,
IsmaelHey 360gradmedia,
Thank you for using Enfold.
You can use this css code to adjust the vertical position of the title.
.iconbox_left_content .iconbox_content, .iconbox_right_content .iconbox_content { overflow: hidden; top: 20px; position: relative; }You may need to turn on the custom css class field if you want to apply the modification to these specific iconbox elements.
Best regards,
IsmaelHi,
I can’t access the dashboard. It redirects to a page with the text “Not Available”. Did you enable the “Lightbox Modal Window” option from the Enfold > Theme Options panel? Looks like like the lightbox script is not enabled.
Best regards,
IsmaelHey info224,
Thank you for using Enfold.
You can use this css to remove the negative margin of the columns so they don’t cover the layer slider.
@media only screen and (max-width: 767px) { .responsive #top .flex_column_table { display: block; margin-top: 0 !important; } }You can also include this code inside the css media query above to adjust the height of the slider.
#layerslider_3, #layerslider_3 * { height: 500px !important; } #layerslider_3 img.ls-layer { width: 500px !important; margin-left: -50px !important; }This may distort the images a bit.
// https://imgur.com/a/Ewdj7DJ
Best regards,
IsmaelHey Daniel,
Thank you for using Enfold.
Where can we see this in action? I think you forgot to post the product url. Please post it in the private field.
Best regards,
IsmaelHi,
You can actually change the color from the element’s options panel. Switch to the “Colors” tab and then set the “Font color?” settings to “Custom”.
Best regards,
Ismael -
AuthorPosts
