• Hi,

    I’ve been trying to change the font size of the website description (tagline) but the code I have used before for Alizee is just not working at all: h2 {
    font-size: 30px !important;
    }

    I’ve also tried conventional WP code but no success so far. Any ideas on how to fix this or what the updated code string is?

    Thank you in advance!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Moderator t-p

    (@t-p)

    Try this: look for this in your theme’s css.style file,

    .site-description {
        margin: 0;
        font-size: 20px;
        color: #B9B9B9;
        font-family: 'Open Sans', sans-serif;
    }

    and change it to:

    .site-description {
        margin: 0;
        font-size: 30px !important;
        color: #B9B9B9;
        font-family: 'Open Sans', sans-serif;
    }

    Don’t edit the theme files directly, otherwise your changes will be overwritten whenever the theme is updated.

    A custom CSS editor (usually titled Additional CSS) is included in the Customizer as of WordPress 4.7 specifically for this purpose.

    As an alternative, especially if you intend to modify more than just CSS, create a child theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Change website description font size’ is closed to new replies.