apply?

wear the sun + blue venom + blue june + wolf carnival + dis illusions + inexorable truth + bleaah + carnivaled + ame-reverie + dear mr wolf + miseryy business + happy kid vibe + simple complications + dismantle repair + take me to infinity + sailor songs + the runaway + baby boxx + shot.eyecry + swishy + retro trauma + flawless paradise

apply | more

Welcome!

Welcome to think-x Your #1 Resource site filled with loads of graphics, html, and much more!
Take a look around, make yourself at home, and enjoy your stay!

Navigation

Home
Owners
Compete!
Visitor
Domain

Owners

Lindsay & Greg are the proud owners of think-x.info
Not only best friends... but complete compu-nerds.
In June of 2010, Greg came and joined Lindsay with working on this website. It has been going very well... and they both contribute lots of time, and effort to keeping think-x one of the hottest sites out there!
If you'd like to read more about the owners, click here.

Link Us

there's static on the tc s c r e e n


Want to advertise your site? Add your button to the Plugboard!

Etc.

Owners: Lindsay & Greg
Opened: January 30th 2010
Hits:
myspace statistics









In this tutorial, I will show you how to edit your CSS code. If you do not know how to get a CSS code, or do not know how to use it.. you can go HERE to see a tutorial.

So when you have a CSS code, theres only a few things that you ever really need to change. Bold, Italics, Underlines, Menus, fonts, and Links, ect. Usually nothing major that you need to do.


Editing BOLD

To edit your BOLD you have to find this part in the CSS code.
b, strong { color: #000000; font-family: tahoma; font-size: 9px; text-transform: uppercase; font-weight: normal; letter-spacing:0px; }
And all you do is change the colour where you see COLOUR:

Editing ITALIC

To edit your ITALIC you have to find this part in the CSS code.
i, em { color: #000000; font-family:georgia; }
And all you do is change the colour where you see COLOUR:

Editing UNDERLINE

To edit your UNDERLINE you have to find this part in the CSS code.
u { color: #a1a196; text-decoration:none; border-bottom:1px solid #000000; }
To change the colour of the text, just change it where it says COLOUR:
And to change the colour of the actual underline, change it where it says BORDER BOTTOM:

Editing BLOCK QUOTE

To edit your
BLOCK QUOTE
you have to find this part in the CSS code.
blockquote { background-color: #ffffff; text-align: justify; padding: 7px; border-left: 6px solid #000000; }
To change the colour of the background, just change it where it says BACKGROUND-COLOUR:
And to change the colour of the border, just change it where it says BORDER-LEFT:
And if you'd like the border to be on the right side, just change where it says BORDER-LEFT: to BORDER-RIGHT:

Editing HOVER SETTINGS

To edit your HOVER you have to find this part in the CSS code.
#menu ul li a:hover { color: #d5d5bd; text-decoration: none; border: 0px solid; cursor: crosshair; background-color: #000000;}
To change the colour of the hover, just change it where it says COLOR:

Editing H1/HEADER 1

To edit your

H1/HEADER 1

you will need to find the part in your CSS that looks like this:
h1 { background-color: transparent; border-bottom:1px dotted #000000; font-family: times new roman; font-weight: normal; font-style:normal; font-size: 20px; color: #000000; text-align:left; text-transform: lowercase; letter-spacing:-2px; line-height: 18px; margin:0px; padding:1px; }
To change the Font, Change it where it says FONT-FAMILY:
To change the Font Size, Change it where it says FONT-SIZE:
To change the Text Colour, Change it where it says COLOUR:
To change the Border under your text, Change it where it says BORDER-BOTTOM
To change the way your text Aligns, Change it were it says TEXT-ALIGN:
To change the letter spacing, Change it were it says LETTER-SPACING:


And if you want to edit your

HEADER 2

and

HEADER 3

It's just the same thing as editing HEADER 1