I have created a mini-site template which seems to work fine with IE but have having several issues with other browsers including firefox. The small brown table should be on the left, with the block of text in the middle and adsense to the right. I have done the layout using DIV tags and CSS.
As you can see im not an expert in HTML / CSS or design.
Gold Card
Here is the CSS im using:
Thanks for your help in advance.
As you can see im not an expert in HTML / CSS or design.
Gold Card
Here is the CSS im using:
Code:
#leftcontent {
background-color:#FFFFFF;
width:190px;
min-height:300px;
height:100%;
margin: 5px 0px 0px 0px;
padding: 5px 5px 5px 5px;
float:left;
}
#content {
background-color:#FFFFFF;
width:390px;
min-height:300px;
height:100%;
padding: 5px 5px 5px 5px;
margin: 5px 0px 0px 5px;
text-align:left;
float:left;
}
#rightadsense {
background-color:#FFFFFF;
width:190px;
min-height:300px;
height:100%;
margin: 5px 0px 0px 0px;
padding: 5px 5px 5px 5px;
float:right;
}
Thanks for your help in advance.