[Resolved] Header html widgets to horizontal line

Home Forums Support [Resolved] Header html widgets to horizontal line

Home Forums Support Header html widgets to horizontal line

  • This topic has 3 replies, 2 voices, and was last updated 4 years ago by David.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1218159
    takkularapsis

    Hi,

    Im trying to get my 2 header text elements to horizontal line, not like vertical as those are now?

    #1218423
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    .header-widget {
        display: flex;
    }
    .header-widget aside:first-of-type {
        margin-right: 2em;
    }
    @media (max-width: 768px) {
        .header-widget {
            justify-content: space-between;
        }
    }
    #1221034
    takkularapsis

    Thank you, worked great!

    #1221826
    David
    Staff
    Customer Support

    You’re welcome

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