|
Joined: Dec 2003
Posts: 4,155
Hard-core CEG\'er
|
Hard-core CEG\'er
Joined: Dec 2003
Posts: 4,155 |
Damnit, James!! Don't blow my cover!!
|
|
|
|
Joined: Dec 2000
Posts: 294
CEG\'er
|
CEG\'er
Joined: Dec 2000
Posts: 294 |
Originally posted by ToasterOven: Originally posted by ov3n: muahahahahhahahahahaha.
lol. funny, atleast i know how to spell oven  ha, thought i was being original too. well, i kinda was...
Considering it's my last name, I believe I do know how to spell it, thanks.
~nick
2001 Cougar V6 MTX
3L Cougar.
|
|
|
|
Joined: Sep 2005
Posts: 1,089
Hard-core CEG\'er
|
Hard-core CEG\'er
Joined: Sep 2005
Posts: 1,089 |
Originally posted by ov3n:
Considering it's my last name, I believe I do know how to spell it, thanks.
so you spell your last name with a 3? lol, you silly!
99 V6SE Sport ATX
|
|
|
|
Joined: Jun 2002
Posts: 25
New CEG\'er
|
New CEG\'er
Joined: Jun 2002
Posts: 25 |
Last edited by hitmanG11; 02/16/06 05:44 PM.
95 contour
2.5
intake,exhaust,removed resmagnecore wires
--Superchip Blue module PEW4--
Battery Relocated
|
|
|
|
Joined: Jun 2003
Posts: 1,241
Hard-core CEG\'er
|
Hard-core CEG\'er
Joined: Jun 2003
Posts: 1,241 |
Originally posted by hitmanG11: my space the MoviE
hitman moved to ohio?!
Jake
96 T-Red SE V6
|
|
|
|
Joined: Oct 2001
Posts: 8,445
Hard-core CEG'er
|
Hard-core CEG'er
Joined: Oct 2001
Posts: 8,445 |
Originally posted by ToasterOven: Originally posted by ov3n:
Considering it's my last name, I believe I do know how to spell it, thanks.
so you spell your last name with a 3? lol, you silly!
obviously he spells it like 'Ov3n'
NY State Trooper: So what makes your car so special to have SVT all over it?
Me: Er...It was made by Fords SPECIAL Vehicle Team?
|
|
|
|
Joined: Jun 2001
Posts: 1,262
Hard-core CEG\'er
|
Hard-core CEG\'er
Joined: Jun 2001
Posts: 1,262 |
not to bring a month old thread back to life but how the hell do you use myspace.com What I mean is how do I customize it??
Thanks,
Phil
|
|
|
|
Joined: Apr 2003
Posts: 3,045
Hard-core CEG\'er
|
Hard-core CEG\'er
Joined: Apr 2003
Posts: 3,045 |
Originally posted by Zoom Zoom Diva: Myspace: sexual predator's hangout of choice:
http://wcco.com/local/local_story_046170441.html
and this is exactly why when my little cousin created her myspace page (no i will not link to it or post her picture) the first thing she did was ask myself and a couple other trusted male family members to look it over for security reasons. unless you are a teenage girl myspace is lame.
00 black/tan svt, #2052 of 2150, born 2/1/00
formerly known as my csvt
"Nothing in the world is more dangerous than a sincere ignorance and conscientious stupidity." -Martin Luther King, Jr.
|
|
|
|
Joined: Dec 2005
Posts: 75
CEG\'er
|
CEG\'er
Joined: Dec 2005
Posts: 75 |
'96 Mystique (Performance Wht/Zetec)
few mods
'65 Ford Mustang V8 <3
'85 Caddy Eldorado AKA Pimpmobile lol :P
|
|
|
|
Joined: Jul 2003
Posts: 3,816
Hard-core CEG\'er
|
Hard-core CEG\'er
Joined: Jul 2003
Posts: 3,816 |
Originally posted by Airforce: not to bring a month old thread back to life but how the hell do you use myspace.com What I mean is how do I customize it??
Thanks,
Phil
BIG Warning... As far as I can tell, Firefox does not play well with CSS, so IE is your friend if you want to use em!
Ok, you have 2 ways...
This is the best editor according to my HTML-illiterate friends: Mygen
Now if you want to do it yourself (like me), you'll first need to know about Cascading Style Sheets (CSS). Learn about them here: W3Schools
==========================
Here are all the text tags for your CSS pleasure: .whitetext12{} .lightbluetext8{} .blacktext12{} .btext{} .blacktext10{} .text{} .orangetext15{} .nametext{} .redbtext{}
These are all the links: A{} a.navbar{} a.redlink{} a.searchlinksmall{}
The "A" will modify ALL links you created in your profile while the "a.whatever" are for specific links on Myspace.
Here are the basics for using those...
Between the brackets, you will enter information. Like say I want my ".nametext" to be red arial 24pt font, you'd end up with this:
.nametext{color: red;font-family: arial;font-size: 24pt;}
You can also use hex for the colors: "color: FF0045;"
==========================
Now for links, it's easy to see what it means. ":link" is when the link was untouched by the pointer ":visted" is for when you've used the link before ":hover" is for when your pointer rolls over the link ":active" is for when you clicked the link, but have not yet released the button.
So say, here's an example... the "a.navbar" link: Unclicked: white arial small caps size 12pt font with no text decoration Visited: yellow arial small caps size 12pt font with strike through Hover: green arial regular caps size 16pt font with underline and overline Active: red arial regular caps size 16pt font with underline and overline
You'd use this: a.navbar:link{color: white;font-family: arial;font-size: 12pt;font-variant: small-caps;text-decoration: none;} a.navbar:visited{color: yellow;font-family: arial;font-size: 12pt;font-variant: small-caps;text-decoration: strike-through;} a.navbar:hover{color: green;font-family: arial;font-size: 16pt;font-variant: normal;text-decoration: underline overline;} a.navbar:active{color: red;font-family: arial;font-size: 16pt;font-variant: normal;text-decoration: underline overline;}
==========================
You can use these tags to modify ANY HTML tag! So if you want to make anything behind a list item tag ("<li>") do certain things, you'd have this:
li{***insert CSS properties/values here***}
==========================
I'm not going to go into images, since pretty much all you can do to them is apply a filter (like B&W, Blur, etc), which the W3Schools hits very lightly... if you want to do some advanced stuff to both text and images, look up "CSS Filters" on Google
If you want an example of what you can do with filters, look at my Myspace page
==========================
So yeah... if that confuzed the crap out of you, go visit the W3Schools and read up on it, or just use an editor!
Remember to put all the CSS between the "<style="text/css"> </sytle>" tags, and place all that into any section (they prefer you use the top of "about me" for some reason).
|
|
|
|
|