Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS It’s probably simple but…I don’t know the answer

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #40917
    joann7
    Participant

    I would like to make the period orange in this line of code:

    RealPhoneValidation.

    It shows up orange in Dreamweaver, but when I view in browser no orange.

    I know it’s probably something really simple, but I don’t know why it isn’t working.
    Please help.

    Here is the page it is on:
    http://joannfitzpatrick.com/leadvalidation/index.html

    #115095
    zachwaggoner
    Member

    your style .orange has no property of orange in the lv.css file.

    if you place

    .orange{
    color:#FF6801;
    }

    it will apply the style.

    #115096
    TheDoc
    Member

    You forgot to put the `#` in front of the color code.

    #115097
    wolfcry911
    Participant

    you’re missing the octothorpe before the hex number

    #115099
    joann7
    Participant

    Thank you. I knew it was simple and I knew this wonderful community would help.

    I appreciate you all.
    Happy Thanksgiving!

    #115103
    Paulie_D
    Member

    I would just go with

    .orange {
    color:orange;
    }

    Easier to remember. :)

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘CSS’ is closed to new topics and replies.