• Hrkaroline

    (@hrkaroline)


    Hi!

    I have a problem with my header/blog name. My blog used to write my blog name in one line, but suddenly it splits up into two lines?

    Look at my header/blog name: https://www.karolinehaugaard.dk/

    Do anyone know how to fix this?

    Thanks.

Viewing 1 replies (of 1 total)
  • stephencottontail

    (@stephencottontail)

    The only time I see it split into two lines is when the browser window gets too small to display the blog name on one line without overflowing the container. You could try using a media query to make the header text smaller at certain device widths. If your theme has a built-in custom CSS option, use it; otherwise, get a custom CSS plugin and try:

    @media screen and (max-width: 758px) {
      .site-title {
        font-size: 24px;
      }
    }

    Try experimenting with different values until it looks right to you.

Viewing 1 replies (of 1 total)
  • The topic ‘Blog name problem!’ is closed to new replies.