- Jun 27, 2004
- 10,233
- 2
- 71
It appears that the layout.css files are missing one simple line. The layout.css files to be edited are at include/themes/*themename*/layout.css
There is one simple line of code missing.
For example, the Green Grass CSS file at forums.anandtech.com/include/themes/greengrass/layout.css
Where it says
needs to be
Edit #3498
In CSS file at forums.anandtech.com/include/themes/greengrass/skin.css
Also, I found a few other differences between the code in the default theme and the others.. one such is (in layout.css):
However, changing this doesn't seem to have any visible effect as far as I can tell.
FireFox users can use the Stylish extension and this style to fix it in the mean time.
There is one simple line of code missing.
For example, the Green Grass CSS file at forums.anandtech.com/include/themes/greengrass/layout.css
Where it says
#Forums .BoxContent {
padding:0px;
}
needs to be
#Forums .BoxContent {
padding:0px;
overflow:hidden;
}
Edit #3498
In CSS file at forums.anandtech.com/include/themes/greengrass/skin.css
Should be:.BoxContent
{
border-left:0px solid #ccc;
border-right:0px solid #ccc;
border-bottom:1px solid #ccc;
background-color:#fefefe;
padding:6px 6px 6px 6px;
}
.BoxContent
{
border-left:1px solid #ccc;
border-right:1px solid #ccc;
border-bottom:1px solid #ccc;
background-color:#fefefe;
padding:6px 6px 6px 6px;
}
Also, I found a few other differences between the code in the default theme and the others.. one such is (in layout.css):
and#NavPane{
width:200px;
float:left;
}
#NavPane{
width:200px;
float:left;
overflow:auto;
}
However, changing this doesn't seem to have any visible effect as far as I can tell.
FireFox users can use the Stylish extension and this style to fix it in the mean time.