Jump to content

Recommended Posts

Posted (edited)

Well lets start here. First take the html file that you have and go to http://validator.w3.org/check and past it there and fix all of the errors. It showed me 28 of them. Also ul closing tags go at the end of the ul this is causing you problems because between you opening ul and closing ul it is trying to make everything a ul. You can git rid of all of the &nbs and </br> tags use css to postion your elements this is most of your problem you are not telling the browser where to put your elements just to put a space in there.

 

On your border left instead of using js for this you can use css like this. Put a border left on all the links with css and then put this in your css


li:last-child {
border-right: none;
}

 

 

This will get you started in the right direction.

Edited by grabenair
Posted

What grabenair said - clean up your html first. This:

                 
                &nbsp
;                 
                 
                 
                 
                 
                 
                 
                 
                 
                 
        &nbsp        
                 
 

Should NEVER be in any code.

 

If you're interested in help with the clean-up, let me know.

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...