Site Description

  • Author
    Posts
  • #34926
    Ken J

    Hello. I am trying to change the color of the Tagline.

    I put in a “color” line (row 5 below) but it is not working. Does anyone have any suggestions?

    #site-description {
    display: block
    float: left;
    font-size: 22px;
    text-color: #333333
    margin-top:5px;
    padding:3px 6px 3px 0;
    clear:both;

    #34956
    Zed
    Cryout Creations mastermind

    You’re missing the semicolon after the text-color declaration:
    text-color: #333333;


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #35153
    Ken

    Thank you Zed so much for trying to help. It is greatly appreciated.

    So I put in a “;” as you suggested, and on a test site that worked. I am not sure if there is a bug though on the Tempera. I put this code in:

    #site-description {
    display:inline;
    float: left;
    font-size: 15px;
    margin-top: 18px;
    padding:6px 6px 6px 0;
    text-color: #0000ff;
    clear:both;

    Per my research this should be blue, but it is remaining as a light gray. (http://goingwiththepitch.com/)

    Should the “clear:both;” be there? Is it maybe the color background I chose?

    (Lastly, how should I be reading the padding of 6px 6px 6px 0″?

    #35168
    Terry

    Have you added the closing } bracket for the CSS?

    #35191
    Zed
    Cryout Creations mastermind

    If you only want to change the color, only use the color styling. Don’t copy the entire theme CSS for each tag you’re customizing:

    #site-description { 
    color: #0000ff; 
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #35247
    Ken J

    Thank you for trying to help.

    Terry, this is what I have right now.

    #site-description {
    display:block;
    float: left;
    font-size: 15px;
    margin-top: 12px;
    padding:6px 12px 6px 0;
    color: #0000ff;
    }

    Per Zed’s note, I did try just

    #site-description {
    color: #0000ff;
    }

    Neither seem to be responding very well. Is it possible the issue is something with the header (color) or image I am using?

    #35403
    Zed
    Cryout Creations mastermind

    Are you using this in the theme’s Custom CSS field or somewhere else?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 7 posts - 1 through 7 (of 7 total)

The topic ‘Site Description’ is closed to new replies.