New account registration is temporarily disabled.

[RMVX ACE] I NEED HELP WITH MY GAME PAGE..

Posts

Pages: first 12 next last
So I have no clue how CSS works at all, and I really want to spice up my game page
by giving it a background like a blood red type of color sorta similar to the title picture. Anyone would care to help a guy out with it? Or at least tell me how to do so? It will be much appreciated!

Here's the game page
https://rpgmaker.net/games/8998/
If I knew how to I would do it for you, but sadly I do not know how CSS works.

CSS'ING YOUR RMN GAME PROFILE

Have you tried this?
pianotm
The TM is for Totally Magical.
32388
CSS is super easy.

https://rpgmaker.net/articles/272/

Give this a read.
Oh okay lol thanks for pointing me to that! Didn't even know there was a tutorial on this site (I need to be on here more)
author=pianotm
CSS is super easy.

https://rpgmaker.net/articles/272/

Give this a read.


I tried reading and learning it but I still cannot understand. I can barely make a decent HTML webpage, which as far as I know is the easiest to learn.
author=BlackWolf1992
author=pianotm
CSS is super easy.

https://rpgmaker.net/articles/272/

Give this a read.
I tried reading and learning it but I still cannot understand. I can barely make a decent HTML webpage, which as far as I know is the easiest to learn.


I know how you feel there, I've tried learning Ruby and HTML at some point and never could. Doesn't help that I rarely have anytime to sit down and learn it anymore. CSS looks decently easy from what I read so far. Its just getting time to learn it and continuing developing my game.
pianotm
The TM is for Totally Magical.
32388
@Wolf, Just copy the code at the bottom of the article and then fiddle with the values. You'll start to figure out what you're doing. This is literally how I learned to do CSS.

https://rpgmaker.net/games/8789/

Here's my most elaborate CSS. It was also my first CSS.
Oh god Ruby is a pain. I tried really hard to learn it, but scripting is just not for me it seems. I have plenty of time to learn, I just have a hard time understanding super complex things.

@TM, I think I tried that once and could not get the hang of it. Maybe I will try again next time.
Also try reading the comments on this event: https://rpgmaker.net/events/gampag/
Lol I got the color I wanted now the text is a little clear and hard to read...... How do I get that back to the way it was?
Okay lol I seriously can't wrap my brain around this I've been trying to add a simple background image to the game page and I can't seem to get it right I've spent at least 2 hours trying this and I can't do it lol
Well, if I am not mistaken to add a background image simply put the image url where this is located:

background: #888888 url("fake-link.png");


#body {


background: #888888 url("fake-link.png");

background-repeat: no-repeat;

color: #444444;

}


I think, honestly, I am not great with CSS, so I am just using basic logic. haha.
pianotm
The TM is for Totally Magical.
32388
What color have you made the background? If you want to change it back, all you have to do is delete the background part of the CSS, but keep changing the code and this should let you change colors.

For changing the text, I think what you want to change is

a {


color:#000033 !important;
}
I still don't get it, I've put the url there several times and I still can't get a result.
Your profile's template is currently a lone }, punch what you're trying in and I'll take a look at it.
author=GreatRedSpirit
Your profile's templateis currently a lone }, punch what you're trying in and I'll take a look at it.


I just put that in and still nothing.
Ahh, the CSS selector is incorrect. You have it set to just "body" which means the HTML element "body" gets the background image. The RMN default background image is defined in the HTML element with the ID of "body" which requires the CSS selector "#body". So replace your CSS with:
#body {
    background-image: url("[url]https://rpgmaker.net/media/content/users/28722/locker/RMN_BACKGROUND.png[/url]");
}

(except the url tag shit that RMN's bbcode parser keeps adding
author=GreatRedSpirit
Ahh, the CSS selector is incorrect. You have it set to just "body" which means the HTML element "body" gets the background image. The RMN default background image is defined in the HTML element with the ID of "body" which requires the CSS selector "#body". So replace your CSS with:
#body {
    background-image: url("[url]https://rpgmaker.net/media/content/users/28722/locker/RMN_BACKGROUND.png[/url]");
}

(except the url tag shit that RMN's bbcode parser keeps adding



Okay, so what url stuff do I remove? (Sorry if i'm annoying I can't wrap my brain around this lol)
Those square bracket url things so it looks like:
#body {
background-image: url("https://rpgmaker.net/media/content/users/28722/locker/RMN_BACKGROUND.png");
}

(I hate the bbcode parser)
author=GreatRedSpirit
Those square bracket url things so it looks like:
#body {
background-image: url("https://rpgmaker.net/media/content/users/28722/locker/RMN_BACKGROUND.png");
}

(I hate the bbcode parser)


I did that and still nothing. There has to be something I'm doing wrong here, I'v followed your instructions closely and it doesn't seem like it wants to work for me?
Pages: first 12 next last