PDA

View Full Version : Looking for a little help in CSS



kre8tivemonkey
18 Feb 2009, 09:19 PM
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.com/Stewarts_Root_Beer_Location.html


Also

What do you guys think of the site

danblee
19 Feb 2009, 03:06 PM
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>