Viewing 4 replies - 1 through 4 (of 4 total)
  • Try adding this to your child theme style.css file:

    #site-description {
        text-align: center;
        width: 400px;
    }

    Thread Starter mariamat

    (@mariamat)

    that worked!thanks for the quick response.
    is it advisable to add properties such as “font” and “color”, “font weight” to the above code in the style.css file to modify those features?

    Sure thing — since you have a child theme, you can modify the CSS all you want — just put the changes in the child theme CSS file (not the parent one).

    Theme Author Sami Keijonen

    (@samikeijonen)

    I would go with max-width property so that you can see tagline also in mobile phones.

    #site-description {
        text-align: center;
        max-width: 400px;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Modifying tagline display’ is closed to new replies.