We just upgraded to the latest version of our board software and are in the process of trying to replicate our old theme, which includes an added sidebar.
On the previous version of the board, this theme worked fine on an iPad. Now, however, the site displays much too large, showing only a fraction of the page.
Any thoughts on what might be going on? Forum is at asoiaf.westeros.org
The CSS that I add that affects the structure is as follows:
#Wrapper {
margin:0 auto;
padding:0;
position:relative;
text-align:left;
width:100%;
}
#Main {
clear:both;
overflow:hidden;
position:relative;
width:100%;
}
#MainLeft {
display:inline;
float:left;
padding:220px 5px 0px 5px;
position:relative;
width:190px;
z-index:5;
}
#MainMiddle {
display:inline;
float:left;
margin-right:-200px;
position:relative;
width:100%;
z-index:1;
}
#MainMiddleInner {
margin:0px 200px 0px 0px;
min-height:0;
overflow:hidden;
}
#MainClearFix {
clear:both;
height:1px;
margin-top:-1px;
overflow:hidden;
}
#MainLeftFix {
background:#D3A664 url({style_images_url}/bg_parchment.png) repeat;
bottom:0;
left:0px;
position:absolute;
width:200px;
z-index:0;
}
#MainMiddleFix {
bottom:0;
left:200px;
position:absolute;
right:0px;
z-index:0;
}
#HeaderMain {
background:#D3A664 url({style_images_url}/bg_parchment.png) repeat;
}
#HeaderShield {
background:transparent url({style_images_url}/header_shield-asoiaf.png) no-repeat;
height:150px;
left:5px;
position:absolute;
top:25px;
width:190px;
}
#HeaderSide {
background:transparent url({style_images_url}/forum_header_side.png) no-repeat;
height:100%;
position:absolute;
top:0px;
width:200px;
}
#HeaderTop {
background:transparent url({style_images_url}/forum_header_top.png) no-repeat;
z-index:5;
}
html>body #MainLeftFix, html>body #MainMiddleFix {
top:0
}
I do have a feeling the added code could be simplified; I basically pulled it from our main site (Westeros: The ‘A Song of Ice and Fire’ Domain) and made it a single sidebar instead of two, but I am not sure what (if anything) could be stripped out.