Forum Replies Created
-
AuthorPosts
-
Hey HulaSlim,
Thanks for your question I assume that your are referring to the “title” attribute for the images
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_remove_title_script() { ?> <script> (function($){ $("*").hover(function(){ $(this).removeAttr("title"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_remove_title_script');Best regards,
MikeJune 12, 2022 at 10:46 pm in reply to: How to overwrite the new class-avia-masonry.php using the child theme? #1355001Hi,
Glad that Guenni007 & Günter could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeJune 12, 2022 at 10:44 pm in reply to: Different scroll offset of toggles on desktop and mobile view #1354999Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeJune 12, 2022 at 10:42 pm in reply to: Footer and header influence each other and socket edition #1354997Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Ueli,
Thanks for your question, the lightbox has an empty title field for your hotspot images, please try adding your text in the image title field in the media library, or if the hotspot image links were added as html you could add the title attributetitle="your title text"Best regards,
MikeHey virtualbis,
Thanks for your question, in the admin sidebar of the page under Header visibility and transparency choose Hide Header on this page

and in the color section choose At least 100% of Browser Window height and the Background Attachment should be Fixed because “Parallax” adds space for the Parallax effect.
And lastly you had an empty column above the color section which added a white space, I removed this, now the color section and background is covering the full page, please clear your browser cache and check.Best regards,
MikeJune 12, 2022 at 9:27 pm in reply to: Team Member Element – Open Team Member Description in Lightbox #1354989Hey Eleina,
Thanks for your question, for this example I created long team member descriptions and used css to make them hidden (the borders are only for reference):

this is the css for the lightbox popup and to hide the team member descriptions:.white-popup { position: relative; background: #FFF; padding: 20px; width: auto; max-width: 500px; margin: 20px auto; } .white-popup .team-social { border: 7px solid rgba(0, 0, 0, 0.1); position: absolute; font-size: 19px; background: #fff; background: rgba(255, 255, 255, 0.7); opacity: 0; visibility: hidden; top: 0; left: 0; right: 0; bottom: 0; text-align: center; border-radius: 3px; } .avia-team-member .team-member-description { visibility:hidden; }Then I added this code to the end of my child theme functions.php file in Appearance ▸ Editor:
function clone_team_member_to_lightbox_popup() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.avia-team-member').each(function () { var copyTeam = $(this).clone().html(); $(this).magnificPopup({ items: { src: $('<div class="white-popup">'+copyTeam+'</div>'), }, type: 'inline' }); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'clone_team_member_to_lightbox_popup');Then on click the team member element opens in a lightbox with the team member description showing.

*recommended css thanks to Guenni007 to have the team member image to the left and content to the right instead of below.mfp-content { display: inline-flex !important; } .white-popup { position: relative; background: #FFF; padding: 20px; width: auto; max-width: 800px; margin: 20px auto; } .white-popup .team-img-container { max-width: 300px; float: left; margin: 0 20px 10px 0 } .white-popup .team-member-name, .white-popup .team-member-job-title, .white-popup .team-member-description { width: 100%; }Best regards,
Mike-
This reply was modified 3 years, 3 months ago by
Mike.
Hey rootbranch,
Thank you for your patience, I don’t think that your icon code is correct “uf1a0” because your page source code doesn’t have a “data-av_icon” for that one, please include an admin login in the Private Content area so we can examine the icon zip file that you uploaded and adjust the function, did you download the file from fontello?Best regards,
MikeHey mackfoyt,
Thank you for your patience, the ImageMapPro uses absolute position on the background container, so you will be limited because too much styling makes the map shapes move out of place.
Please try this css in your Quick CSS:#domov > .container { padding: 0; display: block; } .imp-zoom-wrap { width: 90%; margin: auto; }After applying the css, please clear your browser cache and check.
This is the expected results:

Best regards,
MikeJune 12, 2022 at 4:05 pm in reply to: Footer and header influence each other and socket edition #1354973Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
For that page try this css:#top.page-id-38 .flex_column.avia-builder-el-2 { overflow: auto; }but on that page the color section that the table is in is hidden on mobile.
If you have multiple tables on multiple pages then I recommend add a custom class to the column that the table is in, if you use the custom class “scroll-table” then you could use this css instead:#top .scroll-table { overflow: auto; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Unfortunately, it’s going to be cropped at some screen sizes if you want the image to be 100% height & width for all screen sizes.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Ok, I added this script to your functions.php for your blog page masonry items on mouse-over:function custom_script() { ?> <script> (function($){ $("#top.page-id-259 .av-masonry-entry,#top.page-id-259 .av-masonry-entry img").hover(function(){ $(this).removeAttr("title"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');please clear your browser cache and check.
Best regards,
MikeHey schweg33,
Thank you for the link to your site, Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#main .image-overlay.overlay-type-extern .image-overlay-inside:before { content: '\E832'; font-family: 'entypo-fontello'; height: 30px; width: 30px; line-height: 30px; margin: -15px 0 0 -15px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
I have adjusted the metadata block and the “continua a leggere” text, but the mouse-over text is from the image title because the grid element is a link, we can not change the text but we can remove it, please let us know if you want to do this and check the other elements.Best regards,
MikeHey PonzioPilato,
Thanks for your question, the background color and button color is dependent on your theme General Styling ▸ Color Scheme, the border and width of the variation label is because the table elements have changed in woocommerce after version 6.0.1

our Shop Demo site is still using woocommerce v3.1.1
anyways try this css to adjust#top .variations th { padding: 4px 10px; border: none; vertical-align: top; } #top .variations th.label { width: 77px; text-align: center; text-transform: capitalize; }
After applying the css, please clear your browser cache and check.Best regards,
MikeHey DesignLena,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.flex_column.el_before_av_table { overflow: auto; }Best regards,
MikeHi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Yigit could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Your site seems down right now, please check:

Are you using OVH Hosting?
You can not FTP demo files they will not install, the demo files need to be imported with the WordPress import feature for .xml files
Please see our documentation: How to manually import a theme demo
But if you are using OVH Hosting see this post, note that he says:I tried several times, some tries were partially successful. In the end, it worked
I recommend importing your demo on a localhost install and using the Duplicator plugin to migrate/clone it to your OVH host.
Best regards,
MikeHey onlylettersandnumbers,
Thank you for your patience, I tried to recreate your issue with our latest version (v5), with a single item showing in a blog element with no pagination in a 1/3 column and 3 items showing in a 2/3 column with pagination.




please check if your settings are the same and if so try updating to v5, I linked to my test page below.Best regards,
MikeHi,
I changed the css to this:.custom-masonry-cat, .av-post-metadata-category-link a { color: #719430; font-family: 'caveat'; font-size: 16px; text-align: center; display: block; font-weight: 700; text-transform: uppercase; }please clear your browser cache and check.
Best regards,
MikeJune 11, 2022 at 4:33 pm in reply to: function.php customization does not work after update #1354915Hey snorlachs,
Thank you for the login, your script is looking to replace the source url of .logo > a > img
but when you use a SVG logo there is no img tag it is a SVG tag and thre is no url it is a clippath because it has already been rendered:

Try using png images instead of svgBest regards,
MikeJune 11, 2022 at 3:24 pm in reply to: Tab Layout Element Left or Right orientation or make mobile friendly. #1354911Hi,
Glad to hear that you have this sorted out, and thanks for sharing your solution.
Sorry for our delayed response, but if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
This reply was modified 3 years, 3 months ago by
-
AuthorPosts


