Wednesday, September 14, 2011

How do you change the font and color of your mySpace layout??

i got this new layout, but i want to change the font and color. it seems to be very small font and the color is white,i would like to change that...

does anyone know what code to change the font for the Whole layout? ThankZ =]How do you change the font and color of your mySpace layout??
To change the font:

Look in the code that you got for your layout for ';font-family';. It'll probably look something like

.somestylename {

font-family:Arial, helvetica, sans serif;

}

that's where you change the font for the layout. Your best bet for changing the font and color for the entire page is to delete any line that says ';font-family'; and then enter this code:

* {

font-family:Arial, helvetica, sans serif; //font names go here

color:#aa0000; //this is a medium red

}



Change the font names to suit you with the one you would most like the browser to render being the first one. The color coding is a hexadecimal code with the first two numbers representing red, the second two green, the last two are the blue. You can experiment with those numbers but your best bet is to visit a site like http://html-color-codes.com/ to get the coding for the exact color you want. The asterisk at the beginning tells the browser that this style applies to all elements on the page. Remember though that if an element on the page specifies another color and is further down the style sheet, it will use that other color. You could also try this code:

* {

font-family:Arial, helvetica, sans serif !important;

color:#aa0000 !important;

}

Though I'm not completely sure just how much of the original style sheet this will override.How do you change the font and color of your mySpace layout??
http://www.freecodesource.com/index.php?





THERE U GO:) every thing to edit your text on myspace:D

No comments:

Post a Comment