Site logo

Archived topic

Line break in heading for tablet & mobile

3 replies · Started by Hasan on November 2, 2020

Viewing posts 1–4 of 4

Hi!

I've created a block element with GenerateBlock which is looking nice on desktop, but need to bring a line-break on a specific place on tablet and smaller views.

On the first big header that says "Travel Bangladesh in Budget", I need to show the "in budget" part on a new line for tablet and mobile devices only. How can I do that?

Thanks!

Hi theres,

try adding this CSS:

@media(max-width: 900px) {
    .home .site-header + .gb-container h1.gb-headline {
        max-width: 14ch;
        margin: auto;
    }
}

Got it, thanks! :)

You're welcome

This archived topic is closed to new replies.