The CSS menu is to long and the end sticks out and only works in FireFox. I need it to work in Internet Explorer and Firefox. I also need the ends chopped off because its a little to long even when its working.
The input log-in form style works in Firefox and all browsers BUT Internet explorer which shows the dull default input fields. I need it to look like how it looks in FireFox but in Internet Explorer also.
I don’t know how to break it to you again without sounding like a recording but you don’t have a doctype and therefore IE has to be treated as though it were IE5 and you can’t use things like attribute selectors as that is not supported in ie5 (nor ie6).
You will need to add classes to your inputs if you want to change their appearance.
Then add those classes to the appropriate input elements.
The problem with the nav is the empty list at the start of the line bumping the row down.
<li>
Remove it and it should align correctly.
I know we have mentioned this a number of times now but you are really making this hard for yourself by sticking to outdated methods such as not using a doctype from the start. You are so far into this now that you are stuck with what you have and you will find that any time you try to add something new you will run into one issue or another.
You can’t use a doctype if that menu is going into your old page. Your old page is built on quirks mode and won’t work because we tried to fix it before but there were too many errors.
That menu is still broken because you haven’t removed the empty list element and non breaking space that I told you to remove earlier.
<li>
That will bump IE down to a new line and break the menu so remove it.