Thread: Visual
View Single Post
  #3  
Old 04-22-2009, 05:29 PM
Ashje Ashje is offline
Member
 
Join Date: Jan 2009
Posts: 179
Credits: 9,948
Ashje
Default RE: Visual

Go into your CSS and find this:
Code:
body {
	background:url(images/bg-body.png) repeat-x top center #E8F7F9;
Change to:
Code:
body {
	background:url(images/bg-body.png) repeat top center #E8F7F9;
That will repeat the background in the default theme. It's simple, just remove the "-x" from repeat.
Reply With Quote