Forum Moderators: not2easy
If uniform margins are important, you can always set them explicitly in your style sheet. Thereby you don't have to rely on the browsers rendering them the exact same way by default.
ul {
margin: 0px 5px;
padding: 0px;
}
You might have to play around with the exact values, but I'm sure you'll find a setting that works well in the different browsers.