GAME PROFILE BACKGROUND
Posts
Pages:
1
For some reason that doesn't work for me and I have no idea why... I tested it with my old trash game "Fat Schwombo's Castle" and tried out some stuff, the code and different pictures of different size and kind. But no matter what I do, the background is white.
Here is the current code I am using:
Calunio gave me his code from the "Marvel Brothel" gamepage which works there to test it... unfortunately it doesn't work for me. It is the above posted code... so if anyone sees the reason why nothing works for my gamepages, please let me know, because I am desperate. :-(
Here is the current code I am using:
#body {
background: #151515 url("http://rpgmaker.net/media/content/users/7125/locker/mbpanel.jpg");
color: #303030;
background-repeat:repeat x repeat-y;
background-attachment:fixed;
background-position:top center;
}
Calunio gave me his code from the "Marvel Brothel" gamepage which works there to test it... unfortunately it doesn't work for me. It is the above posted code... so if anyone sees the reason why nothing works for my gamepages, please let me know, because I am desperate. :-(
i looked in your source and you have url tags around the url in the css.
try this
#body
{
background: #151515 url('http://rpgmaker.net/media/content/users/7125/locker/mbpanel.jpg') repeat fixed center top;
}
i didn't see any really strange gaps when i tested it on my game page, so hope this works for you!
try this
#body
{
background: #151515 url('http://rpgmaker.net/media/content/users/7125/locker/mbpanel.jpg') repeat fixed center top;
}
i didn't see any really strange gaps when i tested it on my game page, so hope this works for you!
that's what i said. the reason the URL tags are there is because the "s are causing it not to be parsed as CSS properly
also hello pasty
also hello pasty
#body
{
background: #151515 url('http://rpgmaker.net/media/content/users/7125/locker/mbpanel.jpg') repeat fixed center top;
}
Doesn't work... background's still white. D-,X
Oh... works! :-A
Edit: Does somebody have the exact size of the background pic so that it fills the whole background with one single picture completely? 1024x768 pixels is too small obviously...
Edit: Does somebody have the exact size of the background pic so that it fills the whole background with one single picture completely? 1024x768 pixels is too small obviously...
unless you use some ludicrous size you'll never find one that will do that. PC resolution isn't standardised!
Try to have it like this;
body {
margin: 0px;
padding:0px;
background: url(http://rpgmaker.net/media/content/users/7125/locker/mbpanel.jpg);
background-attachment:fixed;
background-repeat: repeat-x;
Well, this was a long time ago så you might got it now, but. Just incase, i'm trying to be nice ! :D
body {
margin: 0px;
padding:0px;
background: url(http://rpgmaker.net/media/content/users/7125/locker/mbpanel.jpg);
background-attachment:fixed;
background-repeat: repeat-x;
Well, this was a long time ago så you might got it now, but. Just incase, i'm trying to be nice ! :D
Pages:
1

















