I cannot seem to get a Master Page to work properly in Firefox. It displays fine in IE7. The site is based on an image, which is broken into parts and put in a table - the content holder is in one of the table cells where the image was set to a background. Here's the source code.
<%
<
</
So, what does "work properly" mean and why do you seem to believe the code you posted doesn't "work properly?"
Jeff
Take a look at the rendered c ode (View Source in browser) and look at the CSS for any positioning.
I did - there wasn't any css rendering, I made sure to take it out as Firefox didn't seem to like that either.
Anyone have any ideas?
Alright, found out what was wrong. In Firefox, the images were displaying above the text, and to prevent this, I had to add this code to my external css file:
img
{
display: block;
}