Forum Replies Created
-
AuthorPosts
-
By the way – most modern browsers support the pseudo-state: focus-visible
This is a good way to design keyboard navigation – because the normal handling of events by hover or click is not affected.you do not need to have multiple layersliders. On each layer you got on content tab :

– so for mobile content – duplicate that layer you like to have in a different way or position – and select your visibility option ( desktop, tablett, mobile)
– the first one you show on desktop and tablett – the copy – show on mobile.now – if you like to change the way they look : – on top there is the preview mode:

select your mode – mobile (now all layers that belong to this mode are only editable and visible) – and edit now the content for that mobile layer.sorry i did not read the whole text here on that topic; but if i see something with inline-svg : did you have any css rule managing the width or height of svg’s ?
__________________
so this might be offtopic – but that was one reason why some of my svg icons seems not to be in placeOn former installations of mine – i use a snippet to convert all img tags that are svgs to inline svgs. those svg’s that do not have a width and height definition inside the svg code ( only viewport settings ) need an absolute width to be shown. Otherwise these svgs are listed as 0x0 dimension.
For those svgs i have set in my quick css a rule like:
#top #main svg {width: 1500px}
with those new svg icons we have on iconbox.css this rule:.iconbox_icon.avia-svg-icon img[is-svg-img=true], .iconbox_icon.avia-svg-icon svg:first-child { height:1em; width:1em; margin-top:3px }so my setting for inline svgs is more selective – and wins the game!
to avoid that :.iconbox_icon.avia-svg-icon img[is-svg-img=true], .iconbox_icon.avia-svg-icon svg:first-child { height:1em !important; width:1em !important; margin-top:3px }put this to your child-theme functions.php:
function only_one_toggle_open_at_the_same_time(){ ?> <script> window.addEventListener("DOMContentLoaded", function () { (function($){ $('.toggler').on('click', function(){ $('.toggler').not(this).next('.toggle_wrap').removeClass('active_tc'); $('.toggler').not(this).removeClass('activeTitle'); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'only_one_toggle_open_at_the_same_time');if you like to have that only for that page – use conditional tags – and insert instead:
function only_one_toggle_open_at_the_same_time(){ if ( is_page(719) ) { ?> <script> window.addEventListener("DOMContentLoaded", function () { (function($){ $('.toggler').on('click', function(){ $('.toggler').not(this).next('.toggle_wrap').removeClass('active_tc'); $('.toggler').not(this).removeClass('activeTitle'); }); })(jQuery); }); </script> <?php } } add_action('wp_footer', 'only_one_toggle_open_at_the_same_time');As i mentioned above – and Mike pointed out again – there are a lot of manual set linebreaks (
<br>)
but if you like you can force a max width of the p-tags by font length units one of the modern one is ch (The width of the 0 character of the font in use) so – 110ch means nearly 110 characters. A more common font unit is em (The font size of the element, or its nearest parent container)I would not recommend this procedure; I would probably rather limit the container itself there, but so that you can see that it also works via css:
#top .avia_textblock p { max-width: 110ch; word-wrap: break-word; margin: 0.85em auto 0; }try:
#menu-item-search a { background: transparent !important; overflow: visible; } #menu-item-search svg { z-index: -1 !important; position: relative !important; top: 3px; } #menu-item-search .avia-search-tooltip .avia-arrow-wrap { right: 25px; }can you show me the page – it is hard to find the right selectors without the example page.
Bingo – that’s it – it seems to be there – even if the switch is off and the value was not previously set to the default value.
as already mentioned above, I have neither used avf_dynamic_css_additional_vars nor avf_dynamic_css_after_vars filter to set entries there. I also downloaded the dynamic-css.php from the installation to see if I changed anything there. Nothing to find! Then i downloaded the whole child-theme folder to look inside – but even then – nothing to find.
In desperation, I downloaded the (Parent) enfold folder and checked it – nothing here either.
So even if i want to get rid of it – i can not handle it.It doesn’t cause any damage, but I still wanted to know.
that is really strange – on the whole theme (only on my huge test page ) i found it but i do not use avf_dynamic_css_additional_vars ( nor avf_dynamic_css_after_vars) filter
but i can see :

But even if I had set a new definition through these filters or added new variables, they would not be listed there, but at a different location. They would be grayed out at the bottom of that list and appear in a new list.
try :
#top #searchform.av_disable_ajax_search #searchsubmit { right: auto; left: 8%; } #top .cn-page-heading-container #searchform { background-color: #FFF; } #top .cn-page-heading-container #searchform > div { max-width: 320px; display: block; margin: 0 50px; } #top .cn-page-heading-container #searchform #searchsubmit, #top #avia-menu #searchsubmit, #top #searchform #searchsubmit { right: 0px !important; left: auto; }and have a look to your search page itself – if this is o.k. for you too!
see : https://riseandshine.childrensnational.org/?s=webI see – that may be the crux of the matter.
can you check it with “copyright” on search please
on https://kriesi.at/support/topic/center-logo-with-burger-icon-on-right/#post-1481879 it is the setting now.
change font-size to 36px or something else.#top #wrap_all #av-burger-menu-ul li { font-size: 36px !important; }see: https://kriesi.at/support/topic/center-logo-with-burger-icon-on-right/#post-1481874
it does work on dev tools – so either it had to set something to !important or to have on a selector a higher specificity.
Try:
@media only screen and (max-width: 767px) { .responsive #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap { display: flex; flex-flow: row wrap; justify-content: space-between; } .responsive #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap .slide-entry { flex: 1 1 100%; margin: 0 0 20px !important; width: unset !important; } }font-size is now on :
#top #wrap_all #av-burger-menu-ul li { font-size: 40px; }just change that value
the logo positioning with 37% on the left is not so advisable.
i would first make the header fixed even in between 768 and 989 px.
then make for the nav a determined width – f.e. 170px#top .av-main-nav-wrap { float: right; position: relative; z-index: 3; padding: 0 !important; margin: 0 0 0 15px !important; } .header_color.av_header_transparency .av-hamburger-inner, .header_color.av_header_transparency .av-hamburger-inner::before, .header_color.av_header_transparency .av-hamburger-inner::after { background-color: #FFF !important; } #top .av_header_transparency .phone-info, #top .av_header_transparency .social_bookmarks li a { color: #FFF !important; } #top .av_header_glassy.av_header_transparency .avia-menu.av_menu_icon_beside { border: none !important; } #top .main_menu { width: 170px } #top .logo { width: calc(100% - 170px); left: unset; } #top .logo img { left: 50%; transform: translateX(-50%) } @media only screen and (min-width: 768px) and (max-width: 989px) { .responsive.html_mobile_menu_tablet #top #wrap_all #header { position: fixed; } } @media only screen and (max-width: 767px) { #header .social_bookmarks { display: none !important; } }First have a look at the burger opened layout – this is realy nearby your example page – isn’t is?
now your columns – best would be if the section got a custom class that no other sliders are influenced :
look for testing purpose:
@media only screen and (max-width: 767px) { #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap { display: flex; flex-flow: row wrap; justify-content: space-between; } #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap .slide-entry { flex: 1 1 100%; margin: 0 0 20px !important; } }this is the rule that is set :
.av-burger-overlay-bg { z-index: 3; opacity: 0.9; background: #000; display: block; position: fixed; }so play here with opacity or background-color – for quick css add #top to the selector for more selectivity:
#top .av-burger-overlay-bg { opacity: 0.7; background: #000; }And do you have code that make the Burger menu background More transparent? So I can see more of the image behind it?
does that belong to charter school page or to your priverproducts.com page?
sorry i thought you like to have that look of your example page.
So maybe you try :#top .av-burger-overlay-bg { z-index: 3; opacity: 1; background-image: url(https://sonoranwaters.armourcloud.io/wp-content/uploads/2025/04/Custom-Pool-Designer-and-Builder-in-Scottsdale-Sonoran-Waters-3-1.jpg); background-size: cover; background-position: center bottom; background-repeat: no-repeat; display: block; position: fixed; } #top .av-burger-overlay-inner { z-index: 3; opacity: 1; background-image: url(https://sonoranwaters.armourcloud.io/wp-content/uploads/2025/04/Sonoran-Waters-Logo_LONG.png); background-repeat: no-repeat; background-size: 450px; background-position: center top; background-color: rgba(0,0,0,0.4); backdrop-filter: blur(2px) }you header settings and logo behaviour should be corrected generally.
Overlapping with burger icon etc. – that is something we can do for burger overlay then too.and maybe this is nicer on transparency headers:
#top .av-main-nav-wrap { float: right; position: relative; z-index: 3; padding: 0 !important; margin: 0 0 0 15px !important; } .header_color.av_header_transparency .av-hamburger-inner, .header_color.av_header_transparency .av-hamburger-inner::before, .header_color.av_header_transparency .av-hamburger-inner::after { background-color: #FFF ; } #top .av_header_transparency .phone-info, #top .av_header_transparency .social_bookmarks li a { color: #FFF; } #top .av_header_glassy.av_header_transparency .avia-menu.av_menu_icon_beside { border: none !important; }find those entries in your css and korrekt them by:
@media only screen and (min-width: 768px) and (max-width: 989px) { .responsive.html_mobile_menu_tablet.html_header_top #top #main { padding-top: 70px !important; } } @media only screen and (max-width: 767px) { .responsive.html_mobile_menu_tablet.html_header_top #top #main { padding-top: 30px !important; } }The admin bar sometimes interferes with the setting of the frontend css.
have a look to this privacy page : https://webers-web.info/datenschutz/
if you scroll you see that the headings will be sticky til the next heading goes to top. if on that page the admin bar is present – the sticky moment seems to be wrong. – because those 50px are not concidered.
You can test it:
Go to your profile and turn off the “Show admin bar” to see that it has nothing to do with logging in and out.
This is something that normal users won’t see anyway.it is only on chrome and safari on Mac ( did not test PC browsers )
April 22, 2025 at 5:23 am in reply to: Indie record label looking for some quick help with our Enfold layout? #1481770have you installed an additional plugin to manage a menu styling or function?
There are two elements inside #header – that do not belong to enfold.
hide them ( or have a look what causes the insertion of those “menu” buttons )#advanced_menu_toggle, #advanced_menu_hide { display: none; }it is caused by the implementation of the “amazon pixel”
on firefox the dimension of 1×1 pixel seems to be enough to “hide” that element just before wrap_all opens.
That inline rule ( img#wpstats{display:none} ) does not work because there is no img with ID: wpstats )- so try:img[src*="amazon-adsystem"] { display: none; }Yesterday – on Easter Monday you (and also the participant in the linked post) posted a problem. Now – when does another company work on one of the most important holidays (holy days) there is?
In addition to this fact, you should also be aware that everyone else here is also entitled to support, so it may take some time for them to respond to your request. It’s only been one day since you reported a problem here. And I’m actually surprised that Rikard responded to your request so quickly.
Obviously, you must have had email contact with the team, because I don’t see any other support records from you.So if there is a reference to disabling the plugins (temporarily), it is to isolate the problem and help you figure out what the cause might be. It is not intended to be a solution to the problem.
If there has ever been such a “bug” in an Enfold version ( f.e.: see fix on Version 6.0.2 – compatibility with WP 6.6 fix for block editor hiding ALB button in header), it has been fixed. So first of all, you should have a current version of the theme installed. If this is the case, it is wise to find out where the problem lies by first seeing if the problem persists without plugins enabled. If this is not the case, then activating the plugins one by one and seeing when the problem occurs will help you identify which plugin might be the cause. A lot of other users do not have that problem.PS : I’m a participant like you, who just didn’t want to go back to sleep the day after Easter Monday.
Enfold offers for text-block alb that option – on styling tab : text-block styling
Edit: oh sorry you mentioned that. But i do not understand what you like to achieve. Can you make a sketch?
do you like to have separators between those columns:
#top .av_textblock_section .avia_textblock { column-rule: 2px solid #ddd; } -
AuthorPosts




