[Resolved] align header-widget text to the bottom of the header, overlap background image

Home Forums Support [Resolved] align header-widget text to the bottom of the header, overlap background image

Home Forums Support align header-widget text to the bottom of the header, overlap background image

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1310381
    sparkle

    i would like to align my header-widget text to the bottom of the header, and overlap background image across the navigation bar. i’ve tried css options including z-index and flex-end, but nothing seems to be working for me.

    hope you are all well!

    #1310850
    David
    Staff
    Customer Support

    Hi there,

    do you have a mockup image of what you’re trying to achieve?

    #1310996
    sparkle

    i was hoping for something like this https://imgur.com/a/MqVAPtJ

    #1311113
    David
    Staff
    Customer Support

    Try adding this CSS:

    @media (min-width: 769px) {
        .site-header {
            margin-bottom: -100px;
        }
        
        .inside-header {
            display: flex;
        }
        
        .header-widget {
            order: 10;
            margin-left: auto;
            align-self: flex-end;
        }
    }

    You will need to increase the Headers Top and Bottom to around 100px each for the overlap to work.

    #1311123
    sparkle

    YES! thank you so much! that looks awesome! thank you! be well!

    #1311456
    David
    Staff
    Customer Support

    Glad to hear that and glad to be of help !

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