Viewing 22 posts - 1 through 22 (of 22 total)
  • Author
    Posts
  • #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!!!!

    #1481475

    on 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.
    #1481483

    Sorry, 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!!!

    #1481560

    Please let me know on these items. thanks again

    #1481672

    Hi,
    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,
    Mike

    #1481749

    That 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!!!

    #1481864

    Please 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.9qZEU

    #1481869

    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;
    }
    
    #1481873

    Thanks 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

    #1481874

    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;
      }
    }
    #1481875

    I’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

    #1481876

    And do you know how I can adjust the Burger menu font size? It seems a little big.

    #1481877

    I added that code, but it still shows 2 columns on mobile view

    #1481878

    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;
      }
    }
    #1481879

    font-size is now on :

    #top #wrap_all #av-burger-menu-ul li {
      font-size: 40px;
    }

    just change that value

    #1481880

    Nice work! perfect.

    lastly, Can you fix the Reviews area to just show 1 column on mobile view?

    #1481882

    I also added the burger menu font size, but it didn’t make the font smaller on mobile.

    #1481889

    I 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;
    }
    }

    #1481890

    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;
      }
    }
    #1481891

    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;
    }
    #1481899

    Your awesome. The Reviews shows 2 but at least it is one above and one below. Thanks

    #1482863

    Hi,
    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

Viewing 22 posts - 1 through 22 (of 22 total)
  • The topic ‘Center logo with Burger icon on right’ is closed to new replies.