> Hi,
> 
> This should be simple for me to figure out, but for some reason I
> can't seem to get the border-bottom from displaying on a image link in
> the sidebar.Here's my CSS
> 
> #sidebar  a:link, #sidebar a:visited{
>         text-decoration: none;
>         color: #636363;
>         border-bottom:1px dotted #ED8045;
>         }
> #sidebar  a:hover{
>         color: #ED8045;
>         }
> 
> Here's the site http://www.cckabaka.com

You need to define it for the link and for the image inside the link,
as the border gets applied to the image, not the parent link:
 #sidebar  a:link, 
#sidebar a:visited,
 #sidebar  a:link img, 
#sidebar a:visited img,
{



-- 
Chris Heilmann 
Blog: http://www.wait-till-i.com
Writing: http://icant.co.uk/  
Binaries: http://www.onlinetools.org/
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to