Description

Game Page Workshop

Details

  • 09/21/2016 08:30 PM
  • 10/05/2016 08:30 PM
  • 10/08/2016 08:30 PM
  • Feldschlacht IV

Achievements

Registration

You must be logged in to sign up for Game Page Workshop.

Posts

I've updated all the old screenshots of my gamepage. I'm now ready to tackle this CCS thing.
Irog, your game is very cool :^D! Best of all, it's less than 1Mb.

I hope your CSS includes some hexagon-goodies somewhere.

EDIT: I'm a filesize maniac that shivers with 400+ Mb downloads. My safezone is 30-90Mb.
Any less is... *v*
Any more is... oAo
author=orochii
Irog, your game is very cool :^D!

Thanks! Feel free to comment the game. I'm always looking for feedback.

author=orochii
Best of all, it's less than 1Mb.

You're the first person to comment on file size. I also like small size games that are fully functional. And it's very convenient for uploading.

author=orochii
I hope your CSS includes some hexagon-goodies somewhere.

I'll do my best!
Did no one answer how to submit yet?


Added to the main post. Basically just create a text file, name it the number of your game page, put the main link to your game page inside and upload it to this page.
This is necessary for the voting to count a submission, so don't forget!
So... I think I submitted my entry correctly. If I didn't just let me know, I guess I will post my game page link here too, just for safety sake :)

https://rpgmaker.net/games/9069/

Nothing too special, but at least I tried haha
Txt files, remember (use Notepad). That way they open in the browser, no download necessary. (And almost every computer has Notepad so there's no issues)
author=Liberty
Txt files, remember (use Notepad). That way they open in the browser, no download necessary. (And almost every computer has Notepad so there's no issues)


My bad, I think it is correct now. Sorry :)
How do we change the color of the game title, the "Summary", "Blog", "Images", "Reviews", "Downloads", "Play Lists" and Blog title, User names (All these texts have a light blue color by default)?
Most (if not all) of these blue texts are links, so you can use
a {
  color: #aabbcc
}
and for when the cursor is hovering over them:
#contents a {
    color: #C7561C !important;
}
#contents a:visited {
}
#contents a:hover {
    color: #C7561C !important;
    text-decoration:underline;
}
Sorry guys, but i have a silly question... Should we write in the text file only the css-file or the game description too?
The text file only has the link to your game page. Click on one of the already submitted ones to get a better idea~
Marrend
Guardian of the Description Thread
21781
While I may have submitted Okiku, Star Apprentice, I kinda like Nakaishi Wars's gamepage better. Of course, I'm probably insane for attempting to CSS up two pages in the context of this event with next-to-no experience going in, rather than focus on one, and making it super-good.
author=Liberty
The text file only has the link to your game page. Click on one of the already submitted ones to get a better idea~


Ok! Thanks for your answer!
It works great. Thanks orochii and GreatRedSpirit.

This change also affects the text "Strategy", "Oldschool", "Tactics", "Text" tag boxes and the "Save", "Quote", "Hide", "Report" boxes under each post. It's a good thing but now I want to change the fill color of those boxes. How do we do that?
For the game info box try the selector:
#game_frame.frame div.right_column div.contents ul.info li a {
    color: green;
}


For the user window:
div.user_actions a {
    color: yellow;
}


Let me know if that's good or if I missed something
They have no effect on my gamepage :(
Oh, you have the !important flag on your #contents a color selector. Add an !important after the color: green and before the ; so it appears like so:

#game_frame.frame div.right_column div.contents ul.info li a {
    color: green !important;
}

Repeat for the other color tag and see if that does the trick.
Adding !important flags didn't change anything.
Removing the !important on #content color made the color of the developer name, engine name and gender turn to green and turn "Save", "Quote", "Hide", "Report" back to default.