Re: [css-d] Syling Hyperlinks question

2007-05-02 Thread Martin Paton
ge- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Schulthess Sent: 02 May 2007 16:03 To: css-d@lists.css-discuss.org Subject: [css-d] Syling Hyperlinks question So this is some fairly simple link styling a { border-bottom:1px solid #eee; color:#d17e62; T

Re: [css-d] Syling Hyperlinks question

2007-05-02 Thread Mauricio Samy Silva
Hi Scoot, There are to ways for apply different links rules in a document: 1-) Assigning a class to the set of links with different styles and declaring CSS for that class like : a.dif - a.dif:visited - a.dif:hover 2-) Play with CSS specificity: # content a & #navigation a Regards, MaurĂ­cio Samy

Re: [css-d] Syling Hyperlinks question

2007-05-02 Thread Bob Meetin
I think you can just add a div or class (if multiple) to the text area where you want this applied and specify the styling to limit this area only. i.e. style: #content a { yadda yadda yadda; } #content a:hover { yadda yadda yadda; } on the page: apply the styles here or to the cont

Re: [css-d] Syling Hyperlinks question

2007-05-02 Thread jeffrey morin
On 5/2/07, Scott Schulthess <[EMAIL PROTECTED]> wrote: > > So this is some fairly simple link styling > > > > a > > { > > border-bottom:1px solid #eee; > > color:#d17e62; > > TEXT-DECORATION: none; > > } > > a:visited > > { > > border-bottom:1px solid #eee; > > color:#9d604c; >

[css-d] Syling Hyperlinks question

2007-05-02 Thread Scott Schulthess
So this is some fairly simple link styling a { border-bottom:1px solid #eee; color:#d17e62; TEXT-DECORATION: none; } a:visited { border-bottom:1px solid #eee; color:#9d604c; text-decoration:none; } a:hover { background-color:#da; border-bottom: