[WSG] Images inside a div class with specified link style

2004-05-02 Thread Jaime W
How do I prevent link styles from showing on the images that are positioned inside a div class with specified link style? An example below. div class=aCol Content text here Content text here Content text here Content text here div class=divRight a href=#img src=top.gif alt=Back to top of the page

Re: [WSG] Images inside a div class with specified link style

2004-05-02 Thread Patrick Griffiths
.divRight a { border-bottom : none; } Your code was looking for an a element nested inside an image! If there are other links in .divRight boxes that you want the border applied to, you'll need to apply a different class to the a element surrounding the image. Patrick Griffiths

RE: [WSG] Images inside a div class with specified link style

2004-05-02 Thread Jaime W
May 2004 12:25 AM To: [EMAIL PROTECTED] Subject: Re: [WSG] Images inside a div class with specified link style .divRight a { border-bottom : none; } Your code was looking for an a element nested inside an image! If there are other links in .divRight boxes that you want the border applied