Maven4Champ
Technical User
- Jun 16, 2004
- 154
All, a link to my page with the issues quite visible are is as follows:
As you can see, I have a few small issues that I am working on. The two I hope to have help with are the navigation and then search input form field.
1.) Navigation
The navigation looks fine in IE7 and Firefox 2 (haven't tested with FF1 yet) but in looking in IE6, there is a BIG issue with the nav. It's all displayed vertically rather than inline and scrolls down the page instead of the nav being across (horizontal) as it is in IE7 and FF2. Is there a different CSS property I need to adjust for or compensate for to achieve this?
The second issue is the input form. I messed with this for several hours and couldn't figure it out in IE6/IE7/FF.
I simply want the the input field to be the same height as the images next to it (29px) and for it to have the proper text alignment (vertically centered and left-aligned horizontally). The css is in the source code of that page. I am probably trying to make this too difficult but getting them lined up properly is becoming a huge pain. Th other issues are manageable and I just need to be sure during coding that I check in all brwosers available for compatibility.
Any advise is greatly appreciated!
As you can see, I have a few small issues that I am working on. The two I hope to have help with are the navigation and then search input form field.
1.) Navigation
The navigation looks fine in IE7 and Firefox 2 (haven't tested with FF1 yet) but in looking in IE6, there is a BIG issue with the nav. It's all displayed vertically rather than inline and scrolls down the page instead of the nav being across (horizontal) as it is in IE7 and FF2. Is there a different CSS property I need to adjust for or compensate for to achieve this?
Code:
ul.menu, .menu ul {
list-style: none;
list-style-type: none;
padding: 0px;
margin: 0px;
cursor: default;
display: inline;
display: table;
}
ul.menu li {
display: table-cell;
position: relative;
padding: 0px;
}
The second issue is the input form. I messed with this for several hours and couldn't figure it out in IE6/IE7/FF.
I simply want the the input field to be the same height as the images next to it (29px) and for it to have the proper text alignment (vertically centered and left-aligned horizontally). The css is in the source code of that page. I am probably trying to make this too difficult but getting them lined up properly is becoming a huge pain. Th other issues are manageable and I just need to be sure during coding that I check in all brwosers available for compatibility.
Any advise is greatly appreciated!