b3ta.com board
You are not logged in. Login or Signup
Home » Messageboard » XXX » Message 7546686 (Thread)

# Ace!
TJ: How do I put a background image on my profile?
(, Sun 26 Aug 2007, 0:40, archived)
#
<style>
body {
background: url('http://yoururl.com/image.jpg');
}
</style>


edit: might all need to be on one line for b3ta profile actually.
(, Sun 26 Aug 2007, 0:44, archived)
# Oh ok
Edit: Won't go past the top line (See my profile)
(, Sun 26 Aug 2007, 0:46, archived)
# try
html
instead of body, and if that doesn't work, try
html, body, div
(, Sun 26 Aug 2007, 0:50, archived)
# div worked
but it's all jumbled, can I make it so there's a black background with the image just once at the top?
(, Sun 26 Aug 2007, 0:55, archived)
#
 div { background: #000000 url('http://www.b3tards.com/u/1628d80a69fd3a28d054/spectrum.jpg') top left no-repeat; }
(, Sun 26 Aug 2007, 0:57, archived)
#
after the background image code, try


background-repeat: no-repeat;
background-color: black;
(, Sun 26 Aug 2007, 0:58, archived)
# or what the stoat says
his is tidier
(, Sun 26 Aug 2007, 0:59, archived)
# this works
<style> #mainbar { background-image: url(yourimageURL);} </style>

for further CSS manipulation, you can also use www.b3ta.com/bpma

.
(, Sun 26 Aug 2007, 0:58, archived)