New account registration is temporarily disabled.

HE WITH CUSTOM CSS

Posts

Pages: 1
* Yay KB went full retard. The title is supposed to be "Help with Custom CSS"


Well, hello to everybody, right now i am having a small problem with the css code for the public profile of my game (http://rpgmaker.net/games/3591/)

- How do i exactly remove the "Download now" Button ??? It adds a really ugly space between the logo and the navigation bar.
- How do i change the background colour of the posts?? (if you see the profile, you will notice that everything has a dark theme, except for the posts, which haves a white background)
- How do i change the default colour for the text ?? (Both, in the posts and in the main frame?)

This is the code of my css:

#body { background: #000000 url("[url]http://rpgmaker.net/media/content/users/12112/locker/grid2.png[/url]") repeat !important; 

}

#contents { background: #000000; }
#main_column { background: url([url]http://rpgmaker.net/media/content/users/12112/locker/Copia_2_de_blue.png);[/url] }
#game_frame { background: #000000 url("[url]http://rpgmaker.net/media/content/users/12112/locker/Copia_2_de_blue.png[/url]") repeat !important; }

/* CUSTOM LOGO CSS WHOA */

#game_header {

background-color: #aaaaaa;

background: url([url]http://rpgmaker.net/media/content/users/12112/locker/Copia_de_123.png);[/url]

}

#game_navigation {

clear:none;

margin-left:2px;

border-bottom:3px #00192b transparent;

height:auto;

}

#game_navigation .start {

margin-left:16px ;

}

#game_navigation li {

background-color: #00192b;

background-color: rgba(0,00,0.5);

/* filter:alpha(opacity = 0.5); */

display:inline-block;

float:none;

vertical-align:bottom;

border-left: 1px #62b7f5 solid;

border-right: 1px #62b7f5 solid;

border-top: 1px #62b7f5 solid;

}

#game_navigation li a {

color: #ffffff!important;

font-size: 1.5em;



}

#game_navigation li:hover {

text-decoration: underline !important;

background-color: #0274c7;


}

#game_navigation li.current {

background-color: #044474;

text-decoration:none !important;

border-top-width:1px;'

border-color:#FFF;

margin-left:20px;

margin-right:20px;

}

#game_navigation li.current a {


font-weight:bold;

}

#game_frame .frame {

border-top-style: none !important;

}



#game_header div.left_column {

background: url([url]http://rpgmaker.net/media/content/users/4854/locker/NLHeaderNull.png);[/url]

background-repeat:no-repeat;

float:none;

width:420px;

height:260px;

margin:0 auto -23px;

}

#game_header div.left_column h1 a {

/* filter:alpha(opacity = 0); */

font-size:0px;

display:block;

width:100%;

height:200px;

color: rgba(0, 0, 0, 0);

}

#game_rating {

position: relative;

top: -70px;

left: -370px;

height:0px;

}

#game_rating .rating {

display:none;

}

#game_thumbnail {

display:none;

}

#contents A:visited{

text-decoration: underline !important;

color: #0f7071;
}

#contents A:link{

text-decoration: underline !important;

color: #14a0a2;
}

Thanks in advance :3
The div.frame selector catches the entire bottom parts, both comments and the reply section. If you want more control use the following:

#posts is the comments
.pages is the page indicator and selector
.contents .message are individual posts
.even and .odd are the even and odd posts
.authors is a developer post
#post_reply is the reply section

Change the color: #xxxxxx; to change the font color for the given CSS selector. You may need to add !important between the color and the ; to give it preference over other CSS trying to set the color. ex:


.pages { color: #c3c3c3 !important; }

*edit*
To hide stuff use display:none; like for your game_counts to remove that '1 reivews' that's hidden in your logo.

*reedit*
Hahaha I thought that looked familiar!
Pages: 1