
-
AuthorPosts
-
April 17, 2025 at 3:38 am #1481472
Can you get me CSS code to get the header to center logo and right side burger icon? Like this site: https://www.lavenderlandscape.com/
And here is my site done with the Enfold Creative Studio demo: https://sonoranwaters.armourcloud.io/home-new/
Also, if there is any other CSS code that you can suggest to get the look on this home page, I would appreciate it: https://www.lavenderlandscape.com/
I am trying to get as close to this look as possible.
Thanks!!!!
April 17, 2025 at 5:05 am #1481475on the “full page menu overlay”, after they click on the burger menu, how can I change the opacity of this and show more of the background image?
-
This reply was modified 3 weeks, 1 day ago by
bemodesign.
-
This reply was modified 3 weeks, 1 day ago by
bemodesign.
-
This reply was modified 3 weeks, 1 day ago by
bemodesign.
April 17, 2025 at 8:47 am #1481483Sorry, last thing. I have Reviews on the home page using “Content Slider”. It has 2 columns on desktop, but how can I have it show just 1 Column on Mobile view?
Thank you!!!
April 18, 2025 at 3:43 am #1481560Please let me know on these items. thanks again
April 20, 2025 at 2:29 pm #1481672Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:div .logo { left: 37%; } div.av-burger-overlay-bg { background-color: rgba(0, 0, 0, .7); }
After applying the css, please clear your browser cache and check.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeApril 21, 2025 at 8:56 pm #1481749That moved the logo over, but did not center it between the left side and the burger icon. So when the screen size is smaller, it isn’t responsive and it too close to burger icon. Is there a way to have it centered for all screens.
Also, I have “Reviews” area on the home page using “Content Slider”. It has 2 columns on desktop, but how can I have it show just 1 Column on Mobile view?
Thank you!!!
April 22, 2025 at 7:33 pm #1481864Please let me know on the last logo question. And also, I have “Reviews” area on the home page using “Content Slider”. It has 2 columns on desktop, but how can I have it show just 1 Column on Mobile view?
https://img.savvyify.com/image/Screen-Shot-2025-04-22-at-10.31.27-AM.9qZEUApril 22, 2025 at 8:36 pm #1481869sorry 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; }
April 22, 2025 at 9:06 pm #1481873Thanks for that, but it had the logo at the top and didn’t look very good.
I think my 2 biggest things are just to have the Logo centered and responsive to any size screen. Seem like when I shrink my desktop view, it is too close to the burger icon.
And the second is the “Reviews” area on the home page using “Content Slider”. It has 2 columns on desktop, but how can I have it show just 1 Column on Mobile view? https://img.savvyify.com/image/Screen-Shot-2025-04-22-at-10.31.27-AM.9qZEU
April 22, 2025 at 9:08 pm #1481874First 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; } }
April 22, 2025 at 9:25 pm #1481875I’m good with the burger layout now. Just need to make sure the logo keep centered on all screens and the Review is just one column on Mobile view. thanks
April 22, 2025 at 9:28 pm #1481876And do you know how I can adjust the Burger menu font size? It seems a little big.
April 22, 2025 at 9:31 pm #1481877I added that code, but it still shows 2 columns on mobile view
April 22, 2025 at 9:36 pm #1481878the 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; } }
April 22, 2025 at 9:37 pm #1481879font-size is now on :
#top #wrap_all #av-burger-menu-ul li { font-size: 40px; }
just change that value
April 22, 2025 at 10:05 pm #1481880Nice work! perfect.
lastly, Can you fix the Reviews area to just show 1 column on mobile view?
April 22, 2025 at 10:09 pm #1481882I also added the burger menu font size, but it didn’t make the font smaller on mobile.
April 23, 2025 at 12:41 am #1481889I really need this if you can:
I have “Reviews” area on the home page using “Content Slider”. It has 2 columns on desktop, but how can I have it show just 1 Column on Mobile view?
I know you sent this code below, but it didn’t do anything.
@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;
}
}April 23, 2025 at 12:42 am #1481890see: 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; } }
April 23, 2025 at 12:54 am #1481891on 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; }
April 23, 2025 at 5:57 am #1481899Your awesome. The Reviews shows 2 but at least it is one above and one below. Thanks
April 25, 2025 at 2:51 pm #1482863Hi,
Glad Guenni007 could help, thank you Guenni007, 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 weeks, 1 day ago by
-
AuthorPosts
- The topic ‘Center logo with Burger icon on right’ is closed to new replies.