
Originally Posted by
RodG
There's several ways you can remove this. Possibly one of the easiest would be to
1) load the file "/includes/templates/theme629/css/stylesheet_tm.css" into a text editor
2) Go to lines#528 - 534 . which will read like
.scroll {
background: url(../images/scroll-bg.gif) repeat-x 0 0;
height: 446px;
position: relative;
padding: 27px 0 6px;
margin-bottom: 34px;
}
Add a new line anywhere between the {} that reads:
display:none;
EG:
.scroll {
background: url(../images/scroll-bg.gif) repeat-x 0 0;
height: 446px;
position: relative;
padding: 27px 0 6px;
margin-bottom: 34px;
display: none;
}
Save the file.
Cheers
RodG