Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with Positioning of css table

Status
Not open for further replies.

jj1234

MIS
Jan 27, 2006
46
GB
I am having a few problems with a css cell rollver in that:

1. Cannot work out how to get left hand border of caladner nav bar and on navbar on bottom of screen.

2. Navbar on bottom of screen does not fit into body of site correctly.

http://clubamigos.port5.com/jan_calander.html[/ulr] Any help would be appreciated.
 
1. I would just a class on the first element and add an additional border.

2. Adding [tt]background-color: white;[/tt] and [tt]overflow: auto;[/tt] to the #wrapper div seems to help with this problem.
 
Many thanks for your help. I made change 2 and that worked great. I am bit unclear as to what you mean by point 1. Could you elaborate and explain in a bit more detail as l am new to CSS. That would be much appreciated , thanks.

Please can you eleborate on this:

1. I would just a class on the first element and add an additional border.

 
To the first link (<a> element) in the navlist, add a [tt]class="first"[/tt] or something similar. Then add something like
Code:
a.first {  border-left: 1px solid rgb(132, 151, 156); }
Apply the same class to the first link in the other nav as well.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top