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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Right floated div appears differently in IE vs FF 1

Status
Not open for further replies.

mkrausnick

Programmer
Apr 2, 2002
766
US
The page is In FF and Opera, the "Quick Jump" dropdown appears on the right edge of the page, which is what I want. In IE, the dropdown appears directly to the right of "HOME".

How do I get IE to display the dropdown on the right edge of the screen?

Thanks,

Mike Krausnick
Dublin, California
 
Add this to your stylesheet
Code:
 #navForm {
width: 300px;
 border: 3px solid red;    
}
I'm guessing that IE is allowing the width of the form to fill the available area. I don't know why. A paragraph or other tag floats like you'd expect; I've not tried floating a form in this manner.

Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
Good guess! I was able to correct the problem (more or less) by adding a width to the quickjump class.

That's worth a star! Thanks.

Mike Krausnick
Dublin, California
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top