Entry BG image |
Entry BG image |
![]()
Post
#1
|
|
![]() sO seDuctivE ![]() ![]() ![]() ![]() Group: Member Posts: 291 Joined: Jan 2004 Member No: 2,009 ![]() |
I have a border around all of my entries in my Xanga, my background color is currently black in and outside of the boxes. Anyway, I wanted to try to put an image as the background for where my entries are I used:
table.blogbody { /* this edits the other the place where the blog is */ background-image: url("THE URL OF MY IMAGE"); background-attachment: fixed; background-position: center; background-repeat:repeat; background-color: #ffffff; width:550px; border: 1px solid #33ebff; border-width: 1px 1px 1px 1px; } And it doesn't seem to be working. My entry BG is still black, and I changed the xanga bg itself to white. Is that the wrong code or perhaps I need to add something? I don't know. It would be great if you could help =] Thanks so much! |
|
|
![]() |
![]()
Post
#2
|
|
![]() What's worst than being blind? Having sight but no vision. ![]() ![]() ![]() Group: Member Posts: 58 Joined: May 2004 Member No: 18,039 ![]() |
remove the quotes before and after the URL. It should be like this:
table.blogbody { /* this edits the other the place where the blog is */ background-image: url(THE URL OF MY IMAGE); background-attachment: fixed; background-position: center; background-repeat:repeat; background-color: #ffffff; width:550px; border: 1px solid #33ebff; border-width: 1px 1px 1px 1px; } |
|
|
![]() ![]() |