• The regular text of my posts are black, and I want to have the text be indented and a somewhat lighter gray color. I tried:

    blockquote {
    border-top: 0px solid #FFFFFF;
    border-bottom: 0px solid #FFFFFF;
    border-left: 0px solid #FFFFFF;
    border-right: 0px solid #FFFFFF;
    color: #BFC1C7;
    margin-left: 0em;
    padding-left: 0px;
    background-color: #FFFFFF;
    font-family: 'lucida grande', 'lucida sans unicode', verdana, sans-serif;
    }

    But the text isn’t any lighter? What did I do wrong?

Viewing 4 replies - 16 through 19 (of 19 total)
  • You were only suppose to add the white color to this, not take anything out #menu a:active Do you have FF?

    Your css is a mess, you have four sets of inline styles.

    At the top of your menu styling youhave this

    #menu a:link, #menu a:visited, #menu a:hover, #menu a:active {

    margin: 0;

    padding: 0;

    } now just add color:#fff; to it if you have FF and wed developer ex you can see what I mean before you apply any changes permantly

    #menu a:link, #menu a:visited, #menu a:hover, #menu a:active {color:#fff; /*This right here*/
    margin: 0;
    padding: 0;
    }

    Just like I said before
    Then this will do it #menu a:active {color:#fff;}

    I see you changed the css but you forgot the ; semi colon; after so that is why the white does not show!!!!!

    just add the ; after fff so it is like this fff; and it will work

Viewing 4 replies - 16 through 19 (of 19 total)

The topic ‘Blockquote- lighter gray text?’ is closed to new replies.