Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

Justin

Justin Avatar
:)

****
Senior Member

256


July 2009
well i`ve been looking through the tutorials, havent tried it yet, i`ve just been reading, and it looks extremely hard :P, this one might take a while, so im going to CSS :P

cant seem to find any CSS tutorials dealing with Proboards here though =/


Last Edit: Jul 20, 2009 23:42:01 GMT by Justin
My signature
[/left][/i][/size]

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
CSS is completely general. There's no real CSS tut for PB. :) As for JavaScript, it really isn't bad once you fully grasp HTML.

Edit: I just went through and marked all PB specific tutorials here.


Last Edit: Jul 21, 2009 15:06:02 GMT by Chris

Conor

Conor Avatar

*****
ProNation

2,180


July 2007
CSS is the easiest (to me) from HTML. It pretty much uses english.

Here's a tutorial for you.

<style type="text/css">
a:hover {
text-decoration: none; color: #000000;
}
</style>

<style type="text/css"> This starts the code. Without it, it will just appear as text.

a:hover This indicates what you are going to be editing through CSS.

{} This pretty much the capsule where all the editing goes. (for lack of a better name)

text-decoration: Is the decoration of the link when you roll over it.

none This means there will be no decoration. No underline, no bold, no nothing.

color: This tells what color the text will be when you roll over it.

#000000 Hex code for black. When the link is rolled over with a mouse, it will turn black.

; In order not to confuse the computer, a semi-colon is required after each edit, to tell the computer that that line is finished.

</style> This finishes the code. Without this, it will just appear as text.

I hope that helped a little. :D


Edit: I'm going to submit this. >.>


Last Edit: Jul 22, 2009 22:21:52 GMT by Conor

Justin

Justin Avatar
:)

****
Senior Member

256


July 2009
^ thanks so much Conor, as i said in your topic =)
My signature
[/left][/i][/size]

newBookmarkLockedFalling