CSS Question

arrowdoe's picture

See here.
Does anyone know how to keep the background image from repeating? Like... to have it just totally stretched out? I've tried anything I could think of but nothing seems to work- not even making a big huge image and uploading it, since photobucket resizes it everytime.

Thanks in advance~
Mis's picture

Hai. I am not sure if that

Hai. I am not sure if that can be done with CSS, perhaps it can and then someone will post a good smart comment after mine. But, uhm. All I could think of, is upload it with a different uploading website. Perhaps one that does host big pictures.
Personally I work with Dropbox now. Keeps the quality up, and the size. But you have to download it to use it, so. It's not like photobucket.. But perhaps if you google "upload large file" or large image or something, maybe something pops up!
arrowdoe's picture

Ah I was afraid of that. I'll

Ah I was afraid of that.
I'll go take a look at Dropbox then~ Thank you Mis :D

I stole this from my test

I stole this from my test blog. I don't know what it is. But it mentions the word repeat.
This is probably absolutely useless. But yeah. Here.

< style type="text/css" >
body
{background:#000000 url(")no-repeat right top;
margin-right:200px;}
< /style >

Just..remove the spaces I put before/after the '<' and '>'s. Did that in case it decided to fill your blog with CSS. xDDD

Good luck, though. ♥
Unplugged's picture

body{background-size:100%}

body{background-size:100%}

^

^ <8O

-nod nod nod-
arrowdoe's picture

Hehe- thank you Wetter and

Hehe- thank you Wetter and Unplugged! Thank you very much!

[e] Where do I need to put that? I can't seem to get it to work /has a fail
Unplugged's picture

seems to work for me.. make

seems to work for me.. make sure you didn't forget any brackets?
Alternatively, replace this:
body{background:url('http://i992.photobucket.com/albums/af43/littlewhitefawn/bgCLOUD.png') fixed repeat}
with this:
body{background:url('http://i992.photobucket.com/albums/af43/littlewhitefawn/bgCLOUD.png') fixed repeat 100%}
ocean's picture

Ah! I was looking for this

Ah!
I was looking for this too. xD Thank you, Unplugged.