Wednesday, September 14, 2011

How do u change your text?

On myspace u can change the color and other stuff i know how to do that already but can u change the font and how do you do it?How do u change your text?
body{font-family: ';Lucida Grande';, Arial, Verdana, Tahoma, sans-serif;}



By the way... on MySpace, the pound sign in front of the color hex DOES NOT work. You have to code the colors in CSS text {color:ff0000;} for example.How do u change your text?
if you are using css to style the site then in the body add this or similar



font:12px Verdana,Arial,Helvetica,sans-serif;



yahoo answers cuts this - so here is the end of the font call:



sans-serif;



this is either a %26lt;style%26gt; in the %26lt;head%26gt;



%26lt;style type=';text/css';%26gt;

body{background:#000000; /* background colour */

color:#d55b0a; /* font colour */

font:12px Verdana,Arial,Helvetica,sans-serif; /* font size and font used */

padding:0;

scrollbar-3dlight-color:#ADD8E6;

scrollbar-arrow-color:#006091;

scrollbar-darkshadow-color:#B1B1B1;

scrollbar-face-color:#F5F5DC;

scrollbar-highlight-color:#909090;

scrollbar-shadow-color:#EEEEC6;

scrollbar-track-color:#F5F5DC}

%26lt;/style%26gt;



or



an external css file called by the template ';style.css'; from the header:

%26lt;link type=';text/css'; rel=';stylesheet'; href=';style.css';%26gt;



eg:

body{background:#000000 ; /* background colour */

color:#d55b0a; /* font colour */

font:12px Verdana,Arial,Helvetica,sans-serif; /* font size and type used by the style */

padding:0;

scrollbar-3dlight-color:#ADD8E6;

scrollbar-arrow-color:#006091;

scrollbar-darkshadow-color:#B1B1B1;

scrollbar-face-color:#F5F5DC;

scrollbar-highlight-color:#909090;

scrollbar-shadow-color:#EEEEC6;

scrollbar-track-color:#F5F5DC}



hope this helps

No comments:

Post a Comment