Results 1 to 2 of 2

Thread: Looking for a little help in CSS

  1. #1
    Join Date
    May 2008
    Posts
    27

    Looking for a little help in CSS

    I'm designing in Dreamweaver, and I have a page that I want multi links to have different colors for the rollover / "hover" I've looked all over and can't see to find an answer.

    I'm attaching the link below: (if some one could tell what code and where to put it to make it work.

    You will notice on the site that the "home buttons and such" have a white rollover (hover).
    I'm looking for the locations in the middle of the page to have an orange rollover when there is a link.

    Thanks for the help

    Here is the link, please take a look at the code for me

    http://www.stewartsrestaurantsinc.co..._Location.html


    Also

    What do you guys think of the site

  2. #2
    Join Date
    Dec 2008
    Location
    St. Petersburg, Florida
    Posts
    15
    It looks like you figured it out. You just need to create a class in CSS and assign that class to the tag of the <p> or the <div> or whatever you want to color it as. For instance:

    CSS:

    .content-links {
    color: blue
    }

    HTML:

    <p>So there I was, here's a <a class="content-links" href="woot.com">link to the site</a></p>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •