Forum Moderators: not2easy
Basically I have a 2 column layout. The left column is the content container and has a background-image: url(); that should be displayed in the top left (although this could be altered, as the image takes up the whole div effectively). This works with every other browser I have tried, except IE5 Mac, which fails to show the image at all.
Please note that I really need someone with a Mac to help, as I dont have access to a Mac to test with.
External Style Sheet Code:
body {
background-color: white;
color: black;
font-family: arial, sans-serif;
font-size: 12px;
padding: 0px;
margin: 0px;
text-align: center;
}
#main {
width: 370px;
float: left;
background-image: url('bg.jpg');
background-repeat: no-repeat;
background-position: top left;
height: 443px;
}
#side {
float: left;
margin: 0px;
padding: 0px;
width: 230px;
}
Can anyone suggest a workaround for me?
Thanks in advance.