CSS ON GAMEPAGES
Posts
Pages:
1
I'm really terrible at coding; but I figured I could copy and paste some simple color modification scrips into the CSS editor on the gamepage and get by that way.......
How wrong I was. Apparently; none of the codes I paste work. Am I approaching this the wrong way? I'd like to do a blog update; but only after I've give the blog a small face lift. Im thinking of adding a background image; though I'm not sure how to do even that.
How wrong I was. Apparently; none of the codes I paste work. Am I approaching this the wrong way? I'd like to do a blog update; but only after I've give the blog a small face lift. Im thinking of adding a background image; though I'm not sure how to do even that.
I actually download the entire game page and save it. I then find some CSS and look for the things I'm replacing. Then I try re-writing it at the end of the same file it was located and preview the local copy in my browser. When I am done, I just copy and paste the extras into my profile to make the changes.
WIP also posted a list of names of things to overwrite too, I just forgot where it was.
WIP also posted a list of names of things to overwrite too, I just forgot where it was.
You don't have to code to learn CSS. All it does is declare how html tags should be formatted - it's almost like advanced bb tags. You can't even declare variables or add two numbers together with it.
Whenever you have like 30 minutes to spare watch this video on html/css basics. He drags ass sometimes, but just stick to it. Afterward you'll understand what the curly braces and semi-colons mean and you can basically just read 80% of CSS style declarations like it's in plain English. It won't seem remotely daunting to you then. It's more like formatting a word document than writing an RGSS script. It just appears to be more confusing than it actually is at first. Video will get you up to snuff.
----
@WolfCoder - You should check out the firebug plugin if you use Firefox, it lets you temporarily edit the CSS right on the site itself. You also can "inspect" elements on a page and it'll automatically highlight the tag and list the entire cascade for that element so you can see things being overwritten and all that. Works really well for javascript debugging too if you ever find yourself doing that.
Whenever you have like 30 minutes to spare watch this video on html/css basics. He drags ass sometimes, but just stick to it. Afterward you'll understand what the curly braces and semi-colons mean and you can basically just read 80% of CSS style declarations like it's in plain English. It won't seem remotely daunting to you then. It's more like formatting a word document than writing an RGSS script. It just appears to be more confusing than it actually is at first. Video will get you up to snuff.
----
@WolfCoder - You should check out the firebug plugin if you use Firefox, it lets you temporarily edit the CSS right on the site itself. You also can "inspect" elements on a page and it'll automatically highlight the tag and list the entire cascade for that element so you can see things being overwritten and all that. Works really well for javascript debugging too if you ever find yourself doing that.
Cool. All the web developers have been praising Firebug, but I'll try it out. Technically CSS WRITING IS CODING by the way. Just because it's easy to do doesn't mean it's not "Coding". The person telling you this is the WolfCoder.
I don't think we disagree - you just misunderstood what I was saying or perhaps I wasn't clear.
CSS is certainly code, I just mean you don't have to know how to program in order to use it. That is what he is assuming. He's not a programmer, and it's well known he has no desire in becoming one. Curly braces and things probably look like Hieroglyphics to him and he falsely assumes he has to learn low level OOP just to tweak his profile.
Maybe saying you don't have to script to understand and use CSS is better word choice. He's thinking it's like RGSS, when it's actually below Events in learning curve. It's primarily used by designers, not programmers in the web development industry. It's just decorating html tags.
CSS is certainly code, I just mean you don't have to know how to program in order to use it. That is what he is assuming. He's not a programmer, and it's well known he has no desire in becoming one. Curly braces and things probably look like Hieroglyphics to him and he falsely assumes he has to learn low level OOP just to tweak his profile.
Maybe saying you don't have to script to understand and use CSS is better word choice. He's thinking it's like RGSS, when it's actually below Events in learning curve. It's primarily used by designers, not programmers in the web development industry. It's just decorating html tags.
Just because it's easy to do doesn't mean it's not "Coding".
Just because it's "Coding" doesn't mean it's not easy.
Just because it's "Coding" doesn't mean it's not easy.
True, but right now as it is it is quite powerful and flexible.
Is there any existing gameprofile that you like? I'm sure we can post the CSS contents for that to get an idea.
Is there any existing gameprofile that you like? I'm sure we can post the CSS contents for that to get an idea.
post=119104
Would be awfully nice if there was something a bit more... intuitive.
Welcome to programming.
post=119112
True, but right now as it is it is quite powerful and flexible.
Is there any existing gameprofile that you like? I'm sure we can post the CSS contents for that to get an idea.
post=119112
True, but right now as it is it is quite powerful and flexible.
Is there any existing gameprofile that you like? I'm sure we can post the CSS contents for that to get an idea.
All I really want is a dark (black) background with white text.
EDIT:
Actually, I really like what the colony did with it's game page. A plain and simple image in the background.
post=119308post=119112
True, but right now as it is it is quite powerful and flexible.
Is there any existing gameprofile that you like? I'm sure we can post the CSS contents for that to get an idea.post=119112All I really want is a dark (black) background with white text.
True, but right now as it is it is quite powerful and flexible.
Is there any existing gameprofile that you like? I'm sure we can post the CSS contents for that to get an idea.
EDIT:
Actually, I really like what the colony did with it's game page. A plain and simple image in the background.
w-wha, stealing my gampages.
(send me a PM for help)
#body {
background: #000000 url("backgroundimageurlhere") top center !important; }
That should do what you want
Edit: If you want the image to stay "fixed" (not scroll with the page) then add "fixed" after "center." If you don't want the background to tile-repeat, then also add "no-repeat."
background: #000000 url("backgroundimageurlhere") top center !important; }
That should do what you want
Edit: If you want the image to stay "fixed" (not scroll with the page) then add "fixed" after "center." If you don't want the background to tile-repeat, then also add "no-repeat."
Yeah this is something you'll need to learn. It takes like two hours to learn CSS.
www.tizag.com has an excellent CSS tutorial.
www.tizag.com has an excellent CSS tutorial.
@argument coding and CSS: CSS is rather a scripting language, you work with a script not a code. A code implies there are abstractions to the way things are presented, while a script is more or less plain English.
(this is my opinion, take it or leave it, JavaScript is not necessarily a scripting language in my book, and RGSS is more of a coding language).
(this is my opinion, take it or leave it, JavaScript is not necessarily a scripting language in my book, and RGSS is more of a coding language).
Pages:
1


















