> From: Barbara Dozetos
> Sent: Thursday, June 01, 2006 1:15 PM

> Can anyone tell me how I can make the second line (when there 
> is one)  
> of the lefthand navigation copy align with the first line?  In this  
> example: http://www.pcc.com/clients/contact.php the 6th, 7th, 
> and 8th  
> links illustrate my problem.

Barb,

I simply added a display:block to your #leftnav ul li a to make it "line up"
(using FireFox on WinXP).


#leftnav ul li a {
        padding: 5px 0 5px 5px;
        color: #000;
        text-decoration: none;
        font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
        font-size: 75%;
        line-height: 90%;
        font-weight: bold;
display:block; /* Add this */
        }

As an aside, I noticed you have each li marked with a different class, but
didn't see any styling for those classes. You can probably safely remove
them and reduce the page size.

<li class="form"></li>
<li class="newsletter"></li>
<li class="lists"></li>

If you leave them there, you should be aware that some browsers will have
some problems with classes/ID's with element names (like form, p, etc.).

--G

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to