Jump to content

left navigation apperance


usguy

Recommended Posts

im a complete rookie so please understand if im not explaining this right. what im trying to do is to have each item listed on the left navigation bar to each have its own border like the left hand side of many 3 column websites.

Link to comment
Share on other sites

In your css add a border declaration:

border: solid 1px #000;

Replace the hex code with whatever color you want. Also, because the borders will double up, you'll need to remove the border from either the top or bottom.

border-top: none;

And then add it back in, but only for the first element.

:first-child {border-top: solid 1px #000;}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...