-
AuthorSearch Results
-
March 28, 2025 at 2:11 pm #1480371
In reply to: Mobile menu doesn´t work
Hey GaWi,
It looks like for each menu item you have two sections on your page with the same ID, one for desktops, and one for mobile.
So on mobile the links are pointing to the hidden section.
It is a standard HTML rule to use each ID only once on your page, please change the mobile IDs to something else that is unique and then create a new menu for mobile use.
Then go to Enfold Theme Options ▸ Main Menu ▸ General ▸ Alternate Menu For Mobile and choose your mobile menu.Best regards,
MikeMarch 28, 2025 at 2:03 pm #1480370In reply to: Add logo to Full Screen Slider
Yes I would like it on small screens – how do I use relative width / height combinations?
This is what I changed css to to get it looking right:#top .avia-fullwidth-slider::after { position: absolute; display: block; content: ""; width: 300px; height: 255px; top: 50px; left: 60px; background-image: url(/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png); background-repeat: no-repeat; background-size: 300px; background-position:center center; background-color: rgba(0,0,0,0); border-radius:20px; }Thanks
March 28, 2025 at 12:59 pm #1480358In reply to: Add logo to Full Screen Slider
now we had top better find settings for relative dimension for your overlay image. …
and maybe it is better to have that only on bigger screens?@media only screen and (min-width: 768px) { #top .avia-fullwidth-slider::after { position: absolute; display: block; content: ""; width: 18vw; height: 15.3vw; max-width: 300px; max-height: 255px; top: 80px; left: 5vw; background-image: url(/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png); background-repeat: no-repeat; background-size: calc(100% - 40px) calc(100% - 40px); background-position:center center; background-color: rgba(159, 171, 154, 0.5); backdrop-filter: blur(4px); border-radius:20px; border: 2px solid #9fab9a; } }and for extra large screens it might be best to have a max-width/-height
always stay the aspect ratio of your inserted image (in your case 1/0.85)March 28, 2025 at 12:52 pm #1480353In reply to: Testimonals on mobile
Thank you! It’s working :)
Topic can be closedMarch 28, 2025 at 12:49 pm #1480351In reply to: Add logo to Full Screen Slider
but you did not set the custom class!
use for now – only to see that it is workiing
and f.e. better with a dark background:#top .avia-fullwidth-slider::after { position: absolute; display: block; content: ""; width: 350px; height: 250px; top: 100px; left: 100px; background-image: url(/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png); background-repeat: no-repeat; background-size: 240px; background-position:center center; background-color: rgba(0,0,0,0.2); backdrop-filter: blur(4px); border-radius:20px; }and perhaps use instead this rgba background
rgba(159, 171, 154, 0.5)March 28, 2025 at 12:36 pm #1480348In reply to: Add logo to Full Screen Slider
Tried this from your link but not showing:
#top .avia-fullwidth-slider.logo-over-video::after {
position: absolute;
display: block;
content: “”;
width: 280px;
height: 120px;
top: 150px;
left: 100px;
background-image: url(https://www.thegatheringbarn.co.uk/wp-content/uploads/2025/03/Gathering-Barn-Banner-Logo-.png);
background-repeat: no-repeat;
background-size: 240px;
background-position:center center;
background-color: rgba(255,255,255,0.3);
backdrop-filter: blur(4px);
border-radius:20px;
}March 28, 2025 at 12:15 pm #1480341In reply to: Add logo to Full Screen Slider
Sorry – now i see that you used the fullscreen slider! why?
Anyway – this is similiar to the other slider – but then the video is cropped on some screen width.because your png isn’t transparent it does not make sense to have a limit of after pseudo-container:
#top .avia-fullscreen-slider:after { position: absolute; display: block; content: ""; width: 100%; height: 100%; top: 150px; left: 50px; background-image: url(https://www.thegatheringbarn.co.uk/wp-content/uploads/2017/04/logo2.png); background-repeat: no-repeat; background-size: 200px; background-position: 20px 10px; }as menitoned above – use a custom class to better select.
PS: this page is transparent? why don’t you use the logo instead for “branding”
March 28, 2025 at 12:12 pm #1480339In reply to: Add logo to Full Screen Slider
first of all – enter the aspect ratio of your video to :
then you will not have the black bars on bottom/top.
Maybe give a custom class to your fullwidth slider – e.g.: logo-over-video
then see here full css code and example: https://webers-testseite.de/video-element/
March 28, 2025 at 9:57 am #1480327In reply to: magnific popup missing form
The form shows up without the plugin, but it makes the page scroll to the top when I open it.
I see a problem also if I click on the link and then close it, if I click on it again the form doesn’t show up./*sizing for popup tilmeld form*/ @media only screen and (min-width: 768px) { #top .mfp-inline-holder .mfp-content { width: 50%!important; }} /*@media only screen and (max-width: 768px) { #top .mfp-iframe-scaler { height: 90vh; }}*/ @media only screen and (min-width: 768px) { #top .mfp-iframe-scaler { width: 60%; margin: 0 auto; }}Is there a way to center align the form in the popup if I wanted the whole thing centered?
or else make the popup narrower so it doesn’t look like this on larger screens?The plugin is what was giving me the widget that I use in the iframe link in the active footer, which is disabled now.
thanks for the help
NancyMarch 28, 2025 at 8:08 am #1480323In reply to: Transparent header on mobile
Hi,
Thank you for the info.
The breadcrumb container is present but is being covered by the header. Try to add this css code to adjust the top padding of the main container.
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 65px !important; } }(removed screenshot)
Best regards,
IsmaelMarch 28, 2025 at 5:51 am #1480310In reply to: Testimonals on mobile
Hi,
Looks like the nav animation doesn’t run on mobile view, rendering it invisible. Try to include this css code:
.responsive #top #wrap_all .av-flex-cells .avia-slideshow-arrows a { opacity: 1; }Best regards,
IsmaelMarch 28, 2025 at 5:44 am #1480308In reply to: social media icons header and footer
Hey rixi,
Thank you for the inquiry.
You can try this css code:
#top #wrap_all .social_bookmarks li { color: #000; background-color: #fff !important; } #top #wrap_all .social_bookmarks li a { color: #000; }Screenshot: https://imgur.com/cCzmGAe
Best regards,
IsmaelMarch 28, 2025 at 5:08 am #1480304In reply to: Overlay on Columns
Hi,
Glad to know it’s working. Yes, you can use it with the Grid Row element, but you may need to adjust the css a bit.
#top #wrap_all .av-custom-gradient-section { background-color: transparent; background-image: linear-gradient(180deg, #FFFFFF21 23%, #FFCBA4 93%); opacity: 1; transition: background 0.3s, border-radius 0.3s, opacity 0.3s; }To apply different gradient colors, add another Custom CSS Class name to the element, such as “av-custom-gradient-section av-gradient-black-to-white” or “av-custom-gradient-section av-gradient-red-to-white”, then specify the gradient with this css:
#top #wrap_all .av-gradient-black-to-white { background: rgb(0,0,0); background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 65%); } #top #wrap_all .av-gradient-red-to-white { background: rgb(255,0,0); background: linear-gradient(0deg, rgba(255,0,0,1) 0%, rgba(255,255,255,1) 65%); }You can use this tool to generate the gradient CSS properties: https://cssgradient.io/
To apply a background image with a gradient, you’ll need to use the Color Section element. As instructed above, you need to enable the color overlay.
Best regards,
IsmaelMarch 27, 2025 at 8:01 pm #1480287In reply to: Adjusting Flip Box height
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 27, 2025 at 2:24 pm #1480272In reply to: Testimonals on mobile
Hi,
I’ve switched it to “column” for the mobile version on the live site for now so that visitors can read all the testimonials. But I’d really like to have the issue fixed, because at the moment I have one testimonial section for desktop and a separate one for mobile.I’ve created a test page here: https://www.hirnharmonie.de/test/
Best regards,
YvonneMarch 27, 2025 at 12:45 pm #1480270Topic: Second menu colour
in forum Enfoldfanlokbun
ParticipantIs there a way of having a second menu the same but different colours on some pages? I have white over the top of layer slider so it stands out but on pages with no layer slider I need it grey.
ThanksMarch 27, 2025 at 10:24 am #1480258In reply to: Pricing boxes – align button at bottom of box
RE: ALIGNING PRICING BOX BUTTON.
Ismael, the styling you gave me for the pricing boxes below was PERFECT… I have just had a big problem and I’ve HAD TO GO BACK TO A PREVIOUS VERSION of pricing boxes which means I have lost the specific “av-otzhdc”…coding in your style BELOW. I can’t see it with debug to put in the new reference… could you brilliant guys help as the client has now released the page for buying tickets!
WEBPAGE LINK – SHAOLINCAMP.DK#top .av-otzhdc-f6e6fb6737c9d94574c2e623c4aab5bf .avia-button-wrap {
position: absolute;
width: 100%;
bottom: 0;
}
#top .av-otzhdc-f6e6fb6737c9d94574c2e623c4aab5bf .flex_column_table .flex_column {
padding-bottom: 100px;
}March 27, 2025 at 5:43 am #1480239In reply to: Scroll to bottom icon higher
Hey hisdi,
Thanks for reaching out.
You can add this css code to adjust the position of the scroll down arrow:
#top .scroll-down-link { bottom: 100px; margin: 0; } #top .av-section-color-overlay-wrap { position: relative; }Best regards,
IsmaelMarch 27, 2025 at 5:24 am #1480233In reply to: post delimiter
Hi,
The width of the meta info is limited to 40em. To adjust it, you can add the following css code:
#top .fullsize .template-blog .post .entry-content-wrapper > * { max-width: 100%; margin-left: auto; margin-right: auto; }Best regards,
IsmaelMarch 26, 2025 at 4:34 pm #1480211In reply to: Sticky element
Hi,
Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.
Best regards,
RikardMarch 26, 2025 at 2:11 pm #1480203In reply to: post delimiter
Hey mary301187,
Please try the following in Quick CSS under Enfold->General Styling:
.container_wrap { border-top-width: 0; } #top .fullsize .template-blog .post_delimiter { border-bottom-width: 0; }Best regards,
RikardMarch 26, 2025 at 11:12 am #1480194In reply to: Boxes – Distance between rows
This reply has been marked as private.March 26, 2025 at 4:51 am #1480178Hi,
We replied here: https://kriesi.at/support/topic/popup-missing-form/#post-1480177
Best regards,
IsmaelMarch 26, 2025 at 4:51 am #1480177In reply to: magnific popup missing form
Hi!
Thank you for the update.
Try adjusting the margin of the iframe container to align it to the center.
#top .mfp-iframe-scaler { width: 60%; margin: 0 auto; }Cheers!
IsmaelMarch 26, 2025 at 4:43 am #1480176In reply to: Boxes – Distance between rows
Hey Loveronika,
Thank you for the inquiry.
We set the first row to have an equal height so it’s the same as the next rows. We also removed the custom top and bottom margins.
If you need to adjust the spacing on mobile view, please add this css code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .flex_column_table.av-equal-height-column-flextable:not(:first-child) { margin-top: 0; } }Best regards,
IsmaelMarch 26, 2025 at 4:35 am #1480174Hi,
We adjusted the css code and added another for mobile view.
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ #top .av-m8dhdoo2-9be497766191be21636491354eb51ed0 .avia-content-slider-inner { max-height: 180px !important; overflow: hidden; } } @media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .av-m8dhdoo2-9be497766191be21636491354eb51ed0 .avia-content-slider-inner .slide-entry { max-height: 115px !important; overflow: hidden; } }Best regards,
IsmaelMarch 26, 2025 at 4:23 am #1480173In reply to: Styling not showing for all elements after migration
Hi,
Thank you for the screenshot.
Looks like you managed to add spacing above the button with this css code.
#package-section .avia-button-wrap { padding-top: 3.5em !important; padding-bottom: .2em !important; }Best regards,
IsmaelMarch 26, 2025 at 4:12 am #1480171In reply to: Overlay on Columns
Hey nicolealbaek,
Thank you for the inquiry.
There is no overlay option for the Column element, but you can apply a background in the Styling > Background panel. For the gradient effect, you can use the Color Section element, toggle the Styling > Background Overlay > Enable Overlay? option, then apply the class name “av-custom-gradient-section” in the Advanced > Developer Settings > Custom CSS Class field. Add this code to override the default overlay color with a gradient.
#top #wrap_all .avia-section.av-custom-gradient-section { background-color: transparent; background-image: linear-gradient(180deg, #FFFFFF21 23%, #FFCBA4 93%); opacity: 1; transition: background 0.3s, border-radius 0.3s, opacity 0.3s; }Best regards,
IsmaelMarch 26, 2025 at 4:01 am #1480170In reply to: Extra padding for ONE menu item?
Hi,
Thank you for the info.
You can add this css code to adjust the padding around the menu button:
#top #wrap_all #header #menu-item-848 { padding: 0 20px; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache afterward.
Best regards,
IsmaelMarch 26, 2025 at 3:27 am #1480164In reply to: Header not full width like attached picture
Hi,
What is the screen resolution of your laptop? If it has a lower screen resolution, you could decrease the max-width value, then adjust the Enfold > General Layout > Maximum Container Width. Make sure to purge the cache or remove the browser history before checking.
Best regards,
Ismael -
AuthorSearch Results
Viewing 30 results - 1,891 through 1,920 (of 142,845 total)
-
Search Results
-
Topic: Second menu colour
Is there a way of having a second menu the same but different colours on some pages? I have white over the top of layer slider so it stands out but on pages with no layer slider I need it grey.
Thanks

