-
AuthorSearch Results
-
August 6, 2025 at 10:29 am #1487620
In reply to: Different menu
read carefully – the first condition:
Logo centered to the menu
best presetting will be logo left – menu right(or logo right menu left – works aswell)
this is best because on responsive case we do not need to take care of logo or burger placement.
left code is for child-theme functions.php – right side codeblock is for quick css.
css adjusted for your settings:
@media only screen and (min-width: 768px) { #top .av-logo-container .logo { opacity: 0; } #top .main_menu { left: 0; width: 100%; } #top .main_menu .avia-menu.av-main-nav-wrap { position: relative; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); } #top #menu-item-logo svg, #top #menu-item-logo img { max-height: 120px; /**** depends on your choosen header height - on shrinking headers it will be set by that enfold shrink script ******/ width: auto; position: relative; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); } } #av-burger-menu-ul .menu-item-logo { display: none }August 6, 2025 at 9:09 am #1487619In reply to: Different menu
Hi Mike
Thanks for your reply.
Unfortunately it does not work for me…I am not able to manage this but is is exactly what i want.Where do i place the codes?
I removed the widget header ( “the announcement-banner”across the top..)What do i have to do to accomplish this?
Kind regards
Karin LelouxAugust 5, 2025 at 10:50 pm #1487614In reply to: Different menu
Hi,
In your example site, I don’t see a widget, if you mean the “announcement-banner” across the top, this can be created better with javascript than a widget.
Nonetheless to center the logo in the menu, to start, try this solution.
Please note that it is best to have an even menu count so it can be split in half.Best regards,
MikeAugust 5, 2025 at 10:37 pm #1487613In reply to: Phone Icon on mobile in extra elements Color
Hey vrhgmt744p,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 989px) { .html_mobile_menu_tablet #top #wrap_all .header_color.av_header_transparency .phone-info .avia-svg-icon svg:first-child { fill: #fff; } }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeAugust 5, 2025 at 2:09 pm #1487600In reply to: Flux checkout styling problem
I pasted all CSS code on top – checkout still broken.
Please feel free to edit CSS, its testing subdomain.
-
This reply was modified 7 months, 2 weeks ago by
napsteris.
August 5, 2025 at 1:58 pm #1487598In reply to: Flux checkout styling problem
Hi,
The only part of that CSS that I can find the Quick CSS is this:
body.woocommerce-checkout { max-width: 100vw; overflow-x: hidden; }Please make sure that you copy all the CSS, or try pasting it at the top so that you know where it is. You could also try a lint tool to check your CSS for errors.
Best regards,
RikardAugust 5, 2025 at 9:49 am #1487595hier ein paar mehr css Setzung als du wahrscheinlich benötigst – lösche einfach was du nicht benötigst:
#top .avia_message_box { /* text-align: left !important; */ padding-top: 30px; hyphens: auto; } #top .avia_message_box p { text-transform: none; font-size: 18px; font-weight: 400; line-height: 1.5em } #top .avia_message_box .avia_message_box_icon svg { position: relative; width: 40px; height: 40px; margin-left: 10px; top: 5px; }August 5, 2025 at 9:45 am #1487594In reply to: CLS issue color section
Hi Ismael,
Thank you for your quick reply.
I did select the the images to preload via the LCP image plugin.
In your first reply you wrote me: photovoltaik-anlage-fockenbrock-elektrotechnik-2560×1707-01.jpg. is the problem.
home_background-keil.svg is a ovelay image! I can only preload one Image with LCP plugin.
The filesize can´t be the Problem, i have tried way bigger on a page without my overlay and it is not causing LCP.
With a tiny 20kb it is the same Problem.Can you please have a closer look either on my page oder in my CSS what might cause the problem other then image size or where I messed up with the height?
Thank you for your help
ChristopherAugust 5, 2025 at 9:09 am #1487592In reply to: The pages don’t have title
you can use that ava_after_main_title hook on your choosen layout
place this to your child-theme functions.php:add_action('ava_after_main_title', function() { echo '<div class="main_color my_title_container">'; echo '<h2 class="page-title">'. get_the_title() .'</h2>'; echo '</div>'; });change tags (espacially heading tag) to your need – and style via that extra class: my_title_container
f.e.#top .main_color.my_title_container .page-title { font-size: var(--enfold-font-size-theme-h2) ; color: var(--enfold-main-color-heading); padding: 20px 0 5px 30px; }August 5, 2025 at 7:25 am #1487589In reply to: Columns Not Stacking on iPad in Color Section
Hi,
Try to add this css code:
.responsive #top #wrap_all .av-layout-grid-container.av-5enyt3-e3a17494e866bcf05416abe291c1d6a0 { display: flex; } .responsive #top #wrap_all .flex_cell.av-4hiz9z-633b1e0ab579d3c11a88073322c9de8f .flex_cell_inner, .responsive #top #wrap_all .flex_cell.av-4hiz9z-633b1e0ab579d3c11a88073322c9de8f .flex_cell_inner .avia-image-container, .responsive #top #wrap_all .flex_cell.av-4hiz9z-633b1e0ab579d3c11a88073322c9de8f .flex_cell_inner .avia-image-container div, .responsive #top #wrap_all .flex_cell.av-4hiz9z-633b1e0ab579d3c11a88073322c9de8f .flex_cell_inner .avia-image-container div div, .responsive #top #wrap_all .flex_cell.av-4hiz9z-633b1e0ab579d3c11a88073322c9de8f .flex_cell_inner .avia-image-container div div img { width: 100%; height: 100%; display: block; object-fit: cover; }If you need this applied to every grid row element using 1/2 + 1/2 layout, use this instead:
.responsive #top #wrap_all .av-layout-grid-container { display: flex; } .responsive #top #wrap_all .flex_cell.av_one_half .flex_cell_inner, .responsive #top #wrap_all .flex_cell.av_one_half .flex_cell_inner .avia-image-container, .responsive #top #wrap_all .flex_cell.av_one_half .flex_cell_inner .avia-image-container div, .responsive #top #wrap_all .flex_cell.av_one_half .flex_cell_inner .avia-image-container div div, .responsive #top #wrap_all .flex_cell.av_one_half .flex_cell_inner .avia-image-container div div img { width: 100%; height: 100%; display: block; object-fit: cover; }Best regards,
IsmaelAugust 5, 2025 at 7:02 am #1487586In reply to: Accessibility issue with the progress bar
Oh, sorry. Since I work with a German user interface, I didn’t think about this progress bar (Fortschrittsbalken). The “Reading Progress Bar” isn’t translated in my German version, but the progress bar element is. That’s why it didn’t occur to me.
Yes background-color is better set on that options dialog of the Element. But you had to open the second popup for each item (bar) there is the background-color option.
__________And just to mention – you can have gradients on that too by css
f.e. for the first bar in your element:#top .avia-progress-bar-container .avia-progress-bar:nth-child(1) .bar { background-image: linear-gradient(90deg, rgba(255, 255, 0, 1) 0%, rgba(0, 188, 212, 1) 50%, rgba(238, 130, 238, 1) 100%); background-size: contain; animation-iteration-count: 1; }August 5, 2025 at 6:10 am #1487579Hi,
Thank you for the update.
Please include this css code to center-align the items in the phone info container:
#top #header_meta .phone-info div { display: flex; justify-content: space-between; align-items: center; } #top #header_meta .phone-info div .avia-icon-pos-left { margin-left: 10px; top: 0; position: relative; }Result:
Best regards,
IsmaelAugust 5, 2025 at 12:21 am #1487576In reply to: CLS issue color section
Hi Ismael,
I am very happy with the Pagespeed Score since the CLS issue is solved!
I am only curious where the LCP issue is coming from. Is it possible that is has something to do with the max height of my Backround image construct?
The Preload LCP Image Plugin is installed and seems to be working fine.PageSpeeed Insights says here is the problem:
<div id="av_section_7" class="avia-section av-1dccl-bef4804921c9cf0151d6be20e4d3ac5b main_color avia-sec…" data-section-bg-repeat="stretch" data-av_minimum_height_pc="80" data-av_min_height_opt="percent" style="">but this is the section under the header image.

Any Idea what I am missing? I don´t think the image sizes are the cause. I build Enfold pages with larger backround images without getting LCP issues.
Thanks you for your help and I have to say I love your Theme – created a few sites with it and will use it again and again !
Best regards,
ChristopherAugust 4, 2025 at 8:26 pm #1487574In reply to: The pages don’t have title
Hi Rikard.
Thanks for your reply.
At the top of the page/portfolio entry/article, I’d like its title.
For the image https://img.savvyify.com/image/Title.yyVOc, if I choose “Realizations” from the menu, I’d like the name of the related page to appear at the top, and also be able to set the color, size, and style of the text string.
Obviously, I can currently do this page by page using text and variables, but there’s definitely a more efficient way.August 4, 2025 at 6:41 pm #1487567Thanks! I noticed that the icons are a bit higher than the text. The text looks dropped down now. This also causes the social icons divider on the right top to have a space under it now. Anyway to clean that up? I have included a screenshot of the issue.
August 4, 2025 at 10:03 am #1487548In reply to: Columns Not Stacking on iPad in Color Section
Hello Mike,
It worked after I changed the breakpoint in the screen options line from 767px to 989px – thank you!However, I have another issue:
On one of my pages, I placed a grid row at the top with an image and some text. When I reduce the viewport width, the headline disappears under the header, and the image doesn’t resize to match the height of the text area.
How can I fix this?Kind regards, Andrea
August 4, 2025 at 9:02 am #1487546Topic: Grid layout – keep post on top
in forum EnfoldUli
ParticipantHi,
using the grid layout for the blog, the “keep post on top” doesn’t work, is there a fix for this?
Thank youAugust 4, 2025 at 7:49 am #1487544In reply to: Accessibility issue with the progress bar
you can even change the height of that bar – or have some patterns as background-image
#top #header .header-reading-progress { height: 10px !important; background-image: linear-gradient(to right, #96b642 0%,#3f3f87 100%); background-size: auto 10px; z-index: 0; }by the way: there is no right side bar to colorize. The width is calculated of that bar.
August 4, 2025 at 7:20 am #1487542In reply to: CLS issue color section
Hi,
Thank you for the update.
The image home_backround-keil.svg is not being preloaded when we check the site, and its file size is still at 96.5 kB, which is relatively large for mobile view. Regardless, the performance score on mobile is now 91, and 95 on desktop. Have you tried using the Preload LCP Image plugin?
Best regards,
IsmaelAugust 4, 2025 at 7:06 am #1487539In reply to: hotspot anchor link no smooth scroll
Hi,
We adjusted the scroll position a bit.
const offsetPosition = elementPosition + 142;Please try it again:
function av_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) { e.preventDefault(); const targetID = this.getAttribute('href').substring(1); const targetElement = document.getElementById(targetID); if (targetElement) { const elementPosition = targetElement.getBoundingClientRect().top + window.pageYOffset; const offsetPosition = elementPosition + 142; window.scrollTo({ top: offsetPosition, behavior: 'smooth' }); history.pushState(null, null, '#' + targetID); } }); }); }); </script> <?php } add_action( 'wp_footer', 'av_hotspot_smooth_scroll', 99 );Adjust the value 142 as needed.
Best regards,
IsmaelAugust 4, 2025 at 6:48 am #1487538In reply to: Adding structured data to just 1 page
Hey peterolle,
Thank you for the inquiry.
You can use the wp_head or wp_footer hook to add the script to a specific page.
Example:
function ava_json_ld_mod() { /// replace placeholder slug-of-your-page with the actual slug or ID of the page if (is_page('slug-of-your-page')) { ?> <script type="application/ld+json"> { "@context": "https://schema.org/", "@id": "https://www.example.com/advancedCpp", "@type": "Course", "name": "Learn Advanced C++ Topics", "description": "Improve your C++ skills by learning advanced topics.", "publisher": { "@type": "Organization", "name": "CourseWebsite", "url": "https://www.examplecoursewebsite.com" }, "provider": { "@type": "Organization", "name": "Example University", "url": "https://www.example.com" } } </script> <?php } } add_action('wp_head', 'ava_json_ld_mod');Make sure to the adjust the value of the is_page conditional function.
Best regards,
IsmaelAugust 4, 2025 at 6:29 am #1487536In reply to: Portfolio Grid Settings
Hey icarogioiosi,
Thank you for the inquiry.
You can add this css code to move the title to the right of the image, position it at the top, reduce the font size, remove the borders, and add space below each portfolio entry. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache after adding the modification.
#top .isotope-item.special_av_fullwidth .inner-entry { text-align: left; display: flex; flex-direction: row-reverse; } #top .grid-entry .inner-entry { box-shadow: none; } #top .isotope-item.grid-entry { margin-bottom: 20px; } #top .isotope-item.special_av_fullwidth .av_table_col .entry-title { margin: 0 0 20px; font-size: 16px; }If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelAugust 4, 2025 at 5:59 am #1487532Topic: Adding structured data to just 1 page
in forum Enfoldpeterolle
ParticipantI need to add some structured data (schema markup) to 1 page only, lets say the homepage, but maybe to another ones.
An example for google:
<script type="application/ld+json"> { "@context": "https://schema.org/", "@id": "https://www.example.com/advancedCpp", "@type": "Course", "name": "Learn Advanced C++ Topics", "description": "Improve your C++ skills by learning advanced topics.", "publisher": { "@type": "Organization", "name": "CourseWebsite", "url": "www.examplecoursewebsite.com" }, "provider": { "@type": "Organization", "name": "Example University", "url": "www.example.com" } </script>How can I add that just to 1 page (homepage) or another page using functions?
Thank you.
August 4, 2025 at 5:53 am #1487531In reply to: Logo on Home Page not visible?
Hey amollde,
Thank you for the inquiry.
Did you set the Logo and the Transparency Logo in the Enfold > Theme Options panel? Please make sure that both of these options have an image selected.
You can also try this css code:
#top .av_header_transparency.av_alternate_logo_active .logo a > img, #top .av_header_transparency.av_alternate_logo_active .logo a > svg { opacity: 1; }Best regards,
IsmaelAugust 4, 2025 at 5:44 am #1487530In reply to: Move burger menu after cart icon
Hi,
Thank you for the info.
Please add this css code to move the account and mobile menus after the cart icon.
@media only screen and (max-width: 1024px) { .responsive #top #wrap_all .main_menu { display: flex; position: absolute; flex-direction: row-reverse; } }Let us know the result.
Best regards,
IsmaelAugust 3, 2025 at 2:29 pm #1487523In reply to: hotspot anchor link no smooth scroll
Hi,
They smooth scroll when I check?
Please keep each thread to one topic, feel free to open multiple threads.Best regards,
MikeAugust 2, 2025 at 5:34 pm #1487504Topic: Portfolio Grid Settings
in forum Enfoldicarogioiosi
ParticipantI’ve searched the online documentation and a few dozen forum posts, but I haven’t been able to find detailed portfolio settings.
In our project, we’re using a single-column grid, as shown in the image https://img.savvyify.com/image/Portfolio.yydw6 .
1) The title appears to the left of the image; how can we have it on the right, while also reducing the width of the white cell containing it?
2) The title is vertically centered on the image; how can we have it at the top, while also reducing the font size?
3) We’d like to eliminate the lines and borders and have a 10-20 pixel white space between each image.
We’ve also tried Masonry, which solves the problem mentioned in point (3) and already has a smaller font, but the title is below the image and we don’t know if it can be “moved” to the right.
August 2, 2025 at 3:42 pm #1487500Topic: hotspot anchor link no smooth scroll
in forum EnfoldMunford
ParticipantHI
on the page below I have an image with 2 hotspots labeled Berlin and Copenhagen.
I have added an anchor link to the hotspot as well as to the text.
The text link works, but it jumps to the section instead of smooth scrolling.
I tested with the Berlin link at the top of the page which scrolls properly.
Neither hotspot “spot” has the anchor link that I added – isn’t it supposed to link from the spot?
I would like both the spot and the text to have anchor links that scroll smoothly if possible.
Can you help me with this?
thanks
NancyAugust 2, 2025 at 3:41 pm #1487499In reply to: Different menu for the homepage
Thanks Guenni007!
Your suggestion with the code to hide the left bar was crucial./* === hide header on home page === */
@media only screen and (min-width:768px) {
.html_header_sidebar #top.home #header {
display: none !important;
}.html_header_left #top.home #main {
margin-left: -2px !important; /* === to ensure there aren’t any white flashes on the left === */
position: relative;
}
}Is it possible to apply this somehow to the maintenance page as well?
Furthermore, your example page (https://clean.webers-testseite.de/) is more or less what we’d like to achieve.
We’re testing the code you kindly provided to find the best possible solution.
I congratulate you for accurately understanding our request and identifying such effective solutions.August 2, 2025 at 3:23 pm #1487498In reply to: CLS issue color section
Hey Ismael
could not wait :-)
I had an idea and finally managed to fix my CLS issue.
My problem was: A color section as backround with rows inside produces a CLS issue i could not get rit off.My solution: I used one color section as backround image with min-heigt and the svg overlay i had in a row is now a second color section positioned absolute over the first color section. Now I am only switching the overlay with media querys. This is CLS error free.
The LCP issue persists, the preloading of my largest contet wasn´t helping.
/* Color section container width and height CLS Fix */ /* DESKTOP */ .cjs-titel-keil-desktop-cls { position: absolute; top: 80px; left: 0; width: 100%; height: calc(100vh - 78px); } @media only screen and (min-width: 1025px) { .cjs-titel-keil-ipadpro-cls { display: none; } } /* IPADPRO */ .cjs-titel-keil-ipadpro-cls { position: absolute; top: 80px; left: 0; width: 100%; height: calc(100vh - 78px); } @media only screen and (max-width: 1024px) { .cjs-titel-keil-desktop-cls { display: none; } }Best regards,
Christopher -
This reply was modified 7 months, 2 weeks ago by
-
AuthorSearch Results
-
Search Results
-
Hi,
using the grid layout for the blog, the “keep post on top” doesn’t work, is there a fix for this?
Thank youI need to add some structured data (schema markup) to 1 page only, lets say the homepage, but maybe to another ones.
An example for google:
<script type="application/ld+json"> { "@context": "https://schema.org/", "@id": "https://www.example.com/advancedCpp", "@type": "Course", "name": "Learn Advanced C++ Topics", "description": "Improve your C++ skills by learning advanced topics.", "publisher": { "@type": "Organization", "name": "CourseWebsite", "url": "www.examplecoursewebsite.com" }, "provider": { "@type": "Organization", "name": "Example University", "url": "www.example.com" } </script>How can I add that just to 1 page (homepage) or another page using functions?
Thank you.
Topic: Portfolio Grid Settings
I’ve searched the online documentation and a few dozen forum posts, but I haven’t been able to find detailed portfolio settings.
In our project, we’re using a single-column grid, as shown in the image https://img.savvyify.com/image/Portfolio.yydw6 .
1) The title appears to the left of the image; how can we have it on the right, while also reducing the width of the white cell containing it?
2) The title is vertically centered on the image; how can we have it at the top, while also reducing the font size?
3) We’d like to eliminate the lines and borders and have a 10-20 pixel white space between each image.
We’ve also tried Masonry, which solves the problem mentioned in point (3) and already has a smaller font, but the title is below the image and we don’t know if it can be “moved” to the right.
HI
on the page below I have an image with 2 hotspots labeled Berlin and Copenhagen.
I have added an anchor link to the hotspot as well as to the text.
The text link works, but it jumps to the section instead of smooth scrolling.
I tested with the Berlin link at the top of the page which scrolls properly.
Neither hotspot “spot” has the anchor link that I added – isn’t it supposed to link from the spot?
I would like both the spot and the text to have anchor links that scroll smoothly if possible.
Can you help me with this?
thanks
Nancy
