Quote:
|
-Some browsers have the topnav right aligned with "About Us" first and "Media" last (which is what I want), and others reverse them and left align them. How do I make this consistent across various browsers?
|
You have both in there. Most browsers see the
float: right; and there is some weirdo hack
f/loat: left; in there that others see.
The li's are going to be ordered different if you float them left or right.
What does it look like if you just lose the browser hacks?
Quote:
|
-Second, I would like there to be no extra white space below the top nav banner before the picture. How do I fix this?
|
Umm, I think if you lose that top padding in .content ... like I said in my first post.
Code:
#MenuBar1 {
background: #6f574a;
width: 780px;
}
.topnav {
background: #847a6a;
height: 38px;
}
.content {
padding: 0;
width: 780px;
}