help? background image messed up

Status
Not open for further replies.

habbz

Custom Title bitchssssssss
Nov 12, 2010
227
1
so i was messing around with my website and i was like HEY i have this image would be great for a background but is a 4 x 4 pixel image and it looks messed up if i expand it
and the code
Code:
<body style="background-color=#XXXXXX; background-image: url(bg.jpg); background-repeat: repeat-x">
only makes it repeat at the very top. help?
 

Joh

Member
Jan 10, 2011
154
20
Code:
<body style="background-color=#XXXXXX; background-image: url(bg.jpg); background-repeat:repeat;
try that.

or

Code:
<div style="background-image:url(bg.jpg);
	background-repeat:repeat;
	width:4px;
	height:4px;"></div>
 

habbz

Custom Title bitchssssssss
Nov 12, 2010
227
1
Code:
<body style="background-color=#XXXXXX; background-image: url(bg.jpg); background-repeat:repeat;
try that.

or

Code:
<div style="background-image:url(bg.jpg);
	background-repeat:repeat;
	width:4px;
	height:4px;">
thanks! it workd
 
Status
Not open for further replies.

Users who are viewing this thread

Top