Hi,
This is caused by the minheight set on the main wrapper, this was to overcome a funny effect when the template loaded based on how the shadows work. If you just add another 3 lines of content or a module it will look fine.
Well this is not ideal we need to keep the structure, so best aproach is to reduce the min height as follows:
Look in template.css / template_css.css for the following
| Code: |
body #wrapper {
background:transparent url(../images/bottom-bg_2.gif) no-repeat center bottom;
min-height:800px;
}
|
TO
| Code: |
body #wrapper {
background:transparent url(../images/bottom-bg_2.gif) no-repeat center bottom;
min-height:600px;
}
|
If that does not work, try min-height: 500 or 400