Open styles/proFormell/template/overall_header.html
Find:
Code: Select all
<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
Before add:
Code: Select all
<link type='text/css' href='{T_THEME_PATH}/standard.css' rel='stylesheet' />
Find:
Code: Select all
<script type="text/javascript">
// <![CDATA[
/*
Style semi-dynamic width by Marc Alexander (c) 2008
Parts based on styleswitcher.js contained in prosilver
*/
var x,y;
if (self.innerHeight) // all except Explorer
{
x = self.innerWidth;
y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
// Explorer 6 Strict Mode
{
x = document.documentElement.clientWidth;
y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
x = document.body.clientWidth;
y = document.body.clientHeight;
}
if (x >= 1420)
{
document.write("<link type='text/css' href='{T_THEME_PATH}/widest.css' rel='stylesheet' />");
} else if (x >= 1220)
{
document.write("<link type='text/css' href='{T_THEME_PATH}/wider.css' rel='stylesheet' />");
} else if (x >= 1070)
{
document.write("<link type='text/css' href='{T_THEME_PATH}/wide.css' rel='stylesheet' />");
} else
{
document.write("<link type='text/css' href='{T_THEME_PATH}/standard.css' rel='stylesheet' />");
}
// ]]>
</script>
Delete it.
Open styles/proFormell/theme/common.css
Find:
Code: Select all
#wrap {
padding: 0 20px;
width: 862px;
margin: 0 auto;
min-width: 650px;
}
Replace with:
Code: Select all
#wrap {
padding: 0 20px;
width: 95%;
margin: 0 auto;
min-width: 650px;
}
Open styles/proFormell/theme/colours.css
Find:
Code: Select all
.headerbar {
background-color: #FFFFFF;
background-image: url("{T_THEME_PATH}/images/header_bg.png");
width: 850px;
height: 150px;
min-width: 635px;
color: #FFFFFF;
}
Replace with:
Code: Select all
.headerbar {
background-color: #FFFFFF;
background-image: url("{T_THEME_PATH}/images/header_bg.png");
background-repeat:repeat-x;
width: 95%;
height: 150px;
min-width: 635px;
color: #FFFFFF;
}
Now just replace styles/proFormell/theme/images/header_bg.png with this version: