[Resolved] split header hook: set header section widths?

Home Forums Support [Resolved] split header hook: set header section widths?

Home Forums Support split header hook: set header section widths?

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

    Hiya, is it possible to set the header sections to specific widths when using this hook?

    I’d like to make section 1 and section 3 smaller and the middle one (where logo is) much wider… possible?

    ta in advance for help.

    #956319
    Tom
    Lead Developer
    Lead Developer

    Hi Jessica,

    Absolutely! You currently have this:

    .header-section > div {
        width: 33.33333%;
    }

    Instead, try this:

    .header-section-1 {
        width: 25%;
    }
    
    .header-section-2 {
        width: 50%;
    }
    
    .header-section-3 {
        width: 25%;
    }

    Let me know if you need more info πŸ™‚

    #958256
    Jessica

    That works great, thank you πŸ™‚

    #958527
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

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