Traveler-Change font color and size of tagline

  • My site isn’t up yet since I’m still dealing with design issues before startup. Can you help me change the CSS code for my header and tagline. It seems the default color for the header is white, but I want it to be #2e2b27. The tagline defaults to the same size at the header and can’t be adjusted separately without a CSS change. I know where to put the CSS code, and that’s the extent of my knowledge. What code would I use for splitting the tagline off of the header and changing the size?

    The blog I need help with is: (visible only to logged in users)

  • You could try:

    a, h1.posttitle {
    color: #2e2b27;
    font-size: // put font size you wish
    }
  • This is the CSS targeting for the header text (I suppose with this you mean the site title):

    header.masthead h1.logo a {
    // Insert your CSS here
    }

    and this is the CSS targeting for the tagline:

    header.masthead h2.description {
    // Insert your CSS here
    }

    To make specific changes for each, enter your CSS styling into the appropriate targeting.

  • The topic ‘Traveler-Change font color and size of tagline’ is closed to new replies.