Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #975965

    I would like to add a widget area to the right side of the header where the logo is to the left and the menu is below.

    The idea is to have the phone info inline with the logo (vs above it) and stick to the top like the logo and menu does.

    I have been able to do the css for it to make the phone look like I want.

    But, I can’t seem to get a new widget area in the location I need it.

    Can you help? I tried to follow the directions here: https://kriesi.at/documentation/enfold/header/ but it never seems to come out just right.

    (At this point, I have reverted back to the original code showing the phone info in the area above the header.)

    Thank you!

    #976041

    Hey kubera,

    If you cant follow the documentation and make it work, please consider to hire someone who will be able to help you deal with it!
    LEt us know if there is something else we can do for you.

    Best regards,
    Basilis

    #976069

    I managed to do what I want by following the advice here: https://kriesi.at/support/topic/adding-a-widget-area-inside-the-inner-container-of-the-header-after-the-logo/
    It is exactly what I was looking for.

    However, it didn’t work right on mobile. I added this code to help:

    #header_main .inner-container .widget {
        position: absolute;
        right: 0;
        padding: 0;
    }
    
    /* Header widget Breakpoint */
    @media only screen and (max-width: 767px) {
    
       .container.av-logo-container .inner-container {
            display: block !important;
        }
        #top #header .logo {
            display: inline-block;
        }
        /* Menu */
        #top #header .main_menu {
            display: inline-block;
            float: right;
        }
        #top #header .av-main-nav-wrap {
            float: right;
        }
        #top #header .widget {
            margin-top: -40px;
     margin-right: 30%;
    
        }
    
    #header_main .container {
      max-height: 150px;
    }
    #header_main {
      height: 150px;
    }
    }
    

    It seems to look fine on iPhone and iPad. But I still have to test on other devices.

    #976201

    Hi kubera,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.