Changing Color of All Blog Text and Centering the Headings

  • Unknown's avatar

    I am trying to get the headings and text all to be black; I have accomplished the text of the body of my enteries to be black, but now I need to get the headings to be black. Also, I am trying to get the heading/title of my blog to be centered but can’t figure that out either. Please help!

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

  • Unknown's avatar

    You appear to have gotten all the text to black (except for the site-description (tagline). If you want that black as well, add this to your CSS.

    #header h2 {
    color: #000000;
    }

    This will center the title and tagline.

    #header {
    padding-left: 0;
    }
    
    #header h1, #header h2 {
    text-align: center;
    }
    
    #access {
    padding-left: 160px;
    }
  • The topic ‘Changing Color of All Blog Text and Centering the Headings’ is closed to new replies.