Site logo

Archived topic

Header html widgets to horizontal line

3 replies · Started by takkularapsis on March 29, 2020

Viewing posts 1–4 of 4

Hi,

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

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;
    }
}

Thank you, worked great!

You're welcome

This archived topic is closed to new replies.