• I am trying to add custom CSS in the Additional CSS option under Customize. My goal is to increase the tagline font size and possibly color. I don’t seem to have the correct syntax. Please advise.
    Also is there CSS to help with increasing the menu bar at the top?
    Is there CSS to also center the logo?
    Thank you, Rita

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

Viewing 1 replies (of 1 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    
    p#slogan {
        font-size: 24px;
        color: #444; /* choose a color here */
        margin-top: .5em;
    }
    #menu {
        width: 100%;
    }
    #logo-area {
        float:none;
        margin: 0 auto;
        text-align: center;
    }

    To add CSS:

    • If you are using WordPress 4.7 or later, use the “Additional CSS” option in the customizer.
    • If your theme has a custom CSS option, use that to add the CSS shown above.
    • If not, install the plugin Simple Custom CSS.

    Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.

Viewing 1 replies (of 1 total)

The topic ‘CSS for Tagline’ is closed to new replies.