SIMPLE CSS ISSUE.

Posts

Pages: 1
Prior to outfitting my profile I wasn't at all familiar with CSS, and despite my many attempts to tweak the gameframe color 'black' and the text 'pink' I simply cannot incur the change. Would any of you be so kind to examine my code and sight the problem?

/* Modifications to the backrgound */

#body {

background:#000000
url("http://farm5.staticflickr.com/4103/5201678587_4402aed7fe_o.jpg");

background-repeat:repeat;

color: ##000000;

/* Modifications to background colors */

#main_column {

background: #cccccc;

}

#game_frame {

background:
url("http://www.missouritrading.com/images_milkpaint/mp_PitchBlack.JPG");

background-repeat:repeat;

}

/* Modifications to messages */

div.message div.contents {

border-left: 0px;

}

#discussion div.message.even {

background: #cccccc !important;

}

#discussion div.message.odd {

background: #aaaaaa !important;

}



/* Modifications to tables (Reviews and Downloads) */

table.listing tr.odd td {

background: #cccccc;

}

table.listing tr.even:hover td, table.listing tr.odd:hover td {

background: #444444

}

.small {

color: #888888;
I'm not 100% sure why your code is failing but this code will work :)
div.frame {
background: url("[url]http://www.missouritrading.com/images_milkpaint/mp_PitchBlack.JPG[/url]") !important;
color: pink !important;
}

unfortunately this is a very superficial fix, for a couple of reasons. One being that the background image doesn't tile properly (ick), and there are many other sections that would have to be edited to coordinate with your gamepage.

If you want, I can give you a list of selectors you'll need to edit, or if you just tell me what you want I can change it for you :D
A heavenly host of thanks for your reply Miracle. While your edit does indeed turn the font color 'pink' the game frame remains white. And this font change only takes effect if I place your edit above my already existing code.

Mainly what I'm attempting to do is change the game frame black so it meshes with the "billboard" image, and then change the text pink so the font can be read against the black game frame.
A heavenly host of thanks for your reply Miracle.

No problem, I'm glad I can help :)

I think I know what you're going for so I just coded the entire thing from scratch. I tested it using one of my gameprofiles and it's functional :D

http://rpgmaker.net/users/Miracle/locker/MIDDENS_CSS.txt
Pages: 1