I am using Visual Studio 2008 to create a vb.net webite and I have created a three column content container however the background image will not display in browser (I have only tested on IE and Firefox). The CSS below actually displays the background image in design view of Visual Studio. I have tried every variation on the path I can think of the get it to display.
Any assistance would be welcomed and appreciated.
Any assistance would be welcomed and appreciated.
Code:
#content-container-BPK-3column
{
background:url('/PublicPages/images/bg-three-column-main.png') repeat-y;
margin-top:3px;
margin-left:auto;
margin-right:auto;
padding:15px;
width:728px;
border:1px solid #818181;
position:relative;
height: Auto;
}
#content-main-BPK-3column
{
width:348px;
float:left;
text-align: justify;
height: auto;
}
#content-side2-BPK-3column {
float:right;
height: 460px;
width: 162px;
}
#content-side1-BPK-3column {
float:left;
height: auto;
text-align: left;
width: 190px;
}
Comment