Forum Replies Created
-
AuthorPosts
-
Hi,
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,
all grid lines became smaller
Do you mean the text is smaller or the lines around each grid cell?
The grid element is a full width element, so forcing it to be less than full width will change how it looks.
If you use a normal table you could place it in a column and achieve the width that you wish.
A image for small mobile devices may be best, but when I check your table for small mobile now it seems to work well, so maybe it will be fine?Best regards,
MikeHey rixi,
You can try this css:@media only screen and (min-width: 980px) { .page-id-1667 .av-layout-grid-container { margin-left: 10%; width: 80%; } }
but it will not look good below 980px, the grid is too large. Feel free to try adjusting the min-width value.
For mobile, I recommend a different element.Best regards,
MikeHi,
They smooth scroll when I check?
Please keep each thread to one topic, feel free to open multiple threads.Best regards,
MikeHi,
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,
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,
PS, Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeHey Munford,
I believe that we were working on the page at the same time, as it changed. Nonetheless, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function hotspot_smooth_scroll() { ?> <script> document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('.av-image-hotspot .avia-tooltip .inner_tooltip a[href^="#"]').forEach(function(anchor) { anchor.addEventListener('click', function(e) { // Prevent default jump e.preventDefault(); const targetID = this.getAttribute('href').substring(1); const targetElement = document.getElementById(targetID); if (targetElement) { targetElement.scrollIntoView({ behavior: 'smooth' }); // Optionally update URL hash history.pushState(null, null, '#' + targetID); } }); }); }); </script> <?php } add_action( 'wp_footer', 'hotspot_smooth_scroll', 99 );
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,
Try adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 1366px) { #top #breakpoint1024 .flex_column_table { display: block; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.slideshow_caption .avia-caption-content p, .slideshow_caption .avia-caption-title { margin: 0; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeAugust 2, 2025 at 1:26 pm in reply to: Phone and email icon next text in heder extra elements #1487490Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.phone-info .avia-icon-pos-left { float: none; display: inline; } .phone-info .avia-icon-pos-left .av-icon-char { font-size: 14px; line-height: 18px; } .phone-info .avia-icon-pos-left.av_font_icon.av-mds9wcyi-0057de6c5f2e63955f80107ffd4df8b8 { margin-left: 10px; } #top .phone-info .avia-svg-icon.avia-font-svg_entypo-fontello svg:first-child { fill: #fff; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey rixi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.slideshow_caption { width: 48%; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeAugust 2, 2025 at 10:28 am in reply to: Background overlay gradient behind text with background image #1487482Hi,
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,
MikeAugust 1, 2025 at 12:39 pm in reply to: Background overlay gradient behind text with background image #1487464Hi,
It looks like the element has “no padding” set in the options, please check, or try this css for the page:.page-id-76 #av_section_1 { padding-top: 50px; padding-bottom: 50px; }
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,
MikeHey sylvias16,
please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHi,
OK, I added the page and I added some of the images to get you started, feel free to change the images. I also added the styling from the theme export file so you should be all set. Please check and let us know.Best regards,
MikeHi,
The WordPress login works fine, thanks.
FTP is a way that we can upload the images to your site, this can’t be done though WordPress for the demo import process.
Please see these two articles:
https://www.ovhcloud.com/en/web-hosting/ftp-host/
https://help.ovhcloud.com/csm/en-web-hosting-ftp-storage-connection?id=kb_article_view&sysparm_article=KB0052711
We could copy the front page shortcode to your site, as the demo you requested only has one page, but you will need to edit the page elements and add your own images.
Would you like us to do this? Otherwise if you are able to post FTP login we can probably also add the images.
The standard demo import won’t work on OVH hosting because they block our IP address.Best regards,
MikeHi,
It looks like you forgot the site URL, and can you include a FTP login also.Best regards,
MikeHi,
The error in the browser console:Uncaught Error: Syntax error, unrecognized expression: #facilitytype=0&sortby=Date&view=Grouping&holes=3&timeperiod=3&timemax=42&timemin=10&players=0&pricemax=10000&pricemin=0&promotedcampaignsonly=false
is from the code in your Golf Sim Booking menu item:https://www.golfnow.com/tee-times/facility/19545-fremont-clubhouse/search#facilitytype=0&sortby=Date&view=Grouping&holes=3&timeperiod=3&timemax=42&timemin=10&players=0&pricemax=10000&pricemin=0&promotedcampaignsonly=false
The hash fragment (#facilitytype=0&sortby=Date…) resembles a query string, jQuery is trying to interpret it as a DOM selector (e.g., an element ID), which causes the syntax error.
Try removing this menu link and see if it solves.Best regards,
MikeHi,
I recommend removing this entire line or place this “//” at the beginning to disable it, if your site crashes you can log in to your FTP and remove the “//”, but I don’t think that it will.
But I don’t want to try without FTP access.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,
MikeJuly 28, 2025 at 9:43 pm in reply to: One page restaurant demo: Transparent logo is the wrong size, main logo is the K #1487309Hi,
Thank you for your patience, I went to your sponsor page on your test site and changed the featured image for two more portfolio items:
Then I went back and changed them again:
I see that on your live site you are sill using the Block Editor, and “action” menu is not responding:
When I switched to the Classic Editor it solved on your live site, I was able to change the image:
I then switched the image back:
Note that the core-data.min.js file this is giving you errors is a part of the Block Editor (Gutenberg), I don’t know why, I don’t see this error on my site, perhaps it is a plugin conflict. I see that you have a plugin called: Database Manager – WP Adminer
Perhaps this corrupted the database?
I recommend using the Classic Editor.Best regards,
Mike -
AuthorPosts