GAME PROFILE CUSTOMIZATION FAQ

Posts

You can delete blogs too. You can't manually delete the game itself, though.
Is there any possibility to determine which 4 images are shown on the main page of a gamepage?
only upload 4 images
That's not acceptable. Also I don't want the main image to be shown in the corner again.
Currently there is no way to control it (except for uploading the last four images specifically).
I was trying to put a background to my game profile. And I put in a cloud background. I wanted to change it to something else but it won't let me. I can remove the cloud background, but when I try to put another image, the cloud background just comes back up. What am I doing wrong?

-EDIT- Nevermind, just had to do a hard refresh. Thanks kentona.
YDS
member of the bull moose party
2516
I am having problems trying to change my font color to white. :( Can someone help?

http://rpgmaker.net/games/2605/



#body {
background: url("http://imgur.com/xlD6p.jpg") !important;
}


#main_column {
background: url("http://rpgmaker.net/media/content/users/1/locker/box_bg.png") !important;
}
#contents div.frame, div.message {
background: none !important;
}

div.blog_post h3 { color: #FFFFFF; }
.buttons a, .buttons button { color: #485460 !important; }
#contents a { color: #FFFFFF; text-decoration: none !important; }
#contents a:hover { color: #FFFFFF; text-decoration: none !important; }
div.makerscore {
color: #FFFFFF !important;




Put color: #ffffff; in your #contents div.frame, div.message block
YDS
member of the bull moose party
2516
Like this?

#body {
background: url("http://imgur.com/xlD6p.jpg") !important;
}


#main_column {
background: url("http://rpgmaker.net/media/content/users/1/locker/box_bg.png") !important;
}
#contents div.frame, div.message {
background: none !important;
#ffffff
}

div.blog_post h3 { color: #FFFFFF; }
.buttons a, .buttons button { color: #485460 !important; }
#contents a { color: #FFFFFF; text-decoration: none !important; }
#contents a:hover { color: #FFFFFF; text-decoration: none !important; }
div.makerscore {
color: #FFFFFF !important;
Like this:

#contents div.frame, div.message {
background: none !important;
color: #ffffff;
}


(Also make sure you close the div.makerscore block, you don't have the } at the end of it)
YDS
member of the bull moose party
2516
Oh! Awesome! Thanks!

Word description is still jacked up - I just can't figure out these tags.
#game_description h3 {
color: #ffffff;
}

Should do it
YDS
member of the bull moose party
2516
Awesome. I got it. Thanks a ton!
YDS
member of the bull moose party
2516
One last question ! Sorry. Should the "logo" work? I tried to put "http://imgur.com/OuDMQ.png" into it's field but it didn't seem to give me a response. Was it too big?
It doesn't, WIP/Ankylo has to set the logo themselves. For us it's just a tempting option that doesn't do anything yet.

There's an alternative but it's a lot of CSS, it'd need a few changes, and could break when the site is updated (depending on changes to HTML/CSS)
YDS
member of the bull moose party
2516
Yeowch. I think I'll pass.
1) I fixed that on Hellion. Lemme check...
2) not sure
3) not sure
4) I think the background is an image, not a color. They replaced them on the Action 52 gameprofile. Check our their source.
I don't have a game profile here so I don't know what all you're given direct access to edit and what you have to override. So these may need !important depending on how you do it.

1) Click on the Review or Download tab. How do I get it so that hovering over a box doesn't change the background colour? Also, why does the second one always seem have a white background when this doesn't seem to be a problem anywhere else?

Each row has an even or odd class attached to it so if you want to you can zebra stripe it easily. Code below will basically strip the :hover and zebra striping out using the same black color you already appear to be setting.
table.listing tr.even:hover td, table.listing tr.odd:hover td {
background:inherit;
}

table.listing tr.odd td {
background:inherit;
}
2) When you are on a certain tab, the background colour of that tab at the top goes white. How do I change this?

It throws a .current class onto the tab to identify which page you are on. You could probably throw inherit here too and be alright if you don't want to identify which page the user is on at all.
#game_navigation li.current a {
background-color: #000;
}
3) Is it possible to change the transparency of the white overlay that appears when someone hovers over an image?

Yes, but it's kind of difficult to explain. It uses a transparent png which you could replace. It's not terribly difficult if you're pretty good with CSS but it's a bit outside the scope of a simple forum post. :/

4) How do I change the background colour of the "Posts" and "Reply" headers above those sections?

As Kentona said they have an image set on them. You can either change the image to link to something new, or if you just want a solid color change that.
div.frame h2 {
background-image:none;
background-color:#666;
}