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

    How can I make my header spread across the width of the browser window? I’m using the stretched layout, but I can’t figure out how to make the logo float totally to the left and the social icon float right and make the navigation centered.

    Thanks

    #983484

    Hey kenshejoe,

    Please try the following in Quick CSS under Enfold->General Styling:

    #header_main .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    Best regards,
    Rikard

    #983781

    Thanks, that worked great.
    Ok, now my navigation is off centered. How do I center the navigation bar? I tried but it remains off centered.

    • This reply was modified 6 years, 2 months ago by kenshejoe.
    #983959

    Hi,

    Thanks for the update.

    Add the following css codes.

    #header_main .main_menu {
        width: 100%;
    }
    
    #header_main .avia-menu {
        left: 50%;
        transform: translateX(-50%);
    }
    
    #top nav .social_bookmarks {
        position: absolute;
        right: 0;
    }

    Best regards,
    Ismael

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