Home | All Fwiends | Random | Online | Music | Blog | Search

wooge's Blog

"we do a little trolling"
Ex-President
9 years old
Netherlands
Last Login: 1624893076000
Contacting wooge
Message
Report
Add
Block
All Blogs (5/10)
1624084666000

css for noobs

simple tutorial to help you do a little CSS:

1. find the element you want to modify

very easy to do. just press F12 or right click and select "inspect element".

then use the selector button
https://the.windows96.net/sel.png

to select an element of your choice.
there will be a bounding box to show you exactly what you are selecting.

https://the.windows96.net/the2.png

2. find its class name

the class name will be in the element

https://the.windows96.net/the3.png

in this case, its "box blurbs".

3. apply some styles

open the CSS box in your MySpace profile and enter some code to style your desired element.

for example, i could do this:

.box.blurbs {
    background: red;
} 

which would give this element a red background.
note that i wrote ".box.blurbs" instead of "box blurbs" and the reason is that "box blurbs" is not a valid css selector, so I had to make it so.

4. you win

congratulations, if you have done this correctly, something about your page is now different.

Please login to leave a comment.