How do you change the font/font color on myspace?
-
i have the myspace 2.0 and i wanna knoe how you change the font..i like the font that is big and overlaps. or if you dont knoe what im talkin bout just show me how to do it?
-
Answer:
Step 1 Opening and Closing Tags When working with CSS, you must start with an opening tag. Likewise, when you have finished your code, you need to end with a closing tags. You can copy and paste the tags below to get started: <*style type="text/css"> <*/style> Everything that you write using CSS must be between these two tags in order to work. Step 2 The Font Color Code Below is the specific code that you can copy and paste to change your font color. This code makes the text on the entire page – called the “body” - change from standard black to whatever color you choose. Use this code for MySpace and other social networking profiles, as well as for blogs and websites. Remember, this code must be between your opening and closing CSS tags: body { color: #HEXCODE; } You need to replace #HEXCODE with the six-digit hex color code that matches what you want to change your font color to. The end result should look similar to this: #FF8800. You need to include the '#' sign before the six-digit hex code. You can find a complete list of colors and their corresponding hex color codes at the URL below: Step 3 Changing a Table's Font Color You can also use CSS to change the font color of sections of text. For instance, you can create a table and change the font color of the table to differ from the font color for the rest of your website: table { color: #HEXCODE; } Changing a DIV's Font Color You can also apply font color changes to certain sections of your website using DIVs: #divname { color: #HEXCODE; } With the above code, you also need to change “divname” to whatever you would like to name your DIV. The '#' is necessary and should come before the DIV name. Step 4 Using CSS for One Section of Text CSS can also be used to change the font color of one word, one line, one paragraph, and so on. For this code, however, you do NOT use opening and closing CSS tags; instead, these tags act as their own opening and closing tags, with the different-colored text going in between them: <*font style="color: #HEXCODE;">Your text goes here.<*/font> Hope it helps you. For more information http://www.iyogi.co.uk
Taylor at Yahoo! Answers Visit the source
Other answers
you could either do <font size="+ENTERNUMBERHEREDONTDELETETHEPLUSS… here</font> or <big> how ever many times you need to write the words <big><big> then when your done write </big>
Related Q & A:
- How do I change the font size on my Yahoo page (mail?Best solution by Yahoo! Answers
- How do you change the font color in myspace?Best solution by Yahoo! Answers
- How do I change text font & color default?Best solution by Yahoo! Answers
- How do I change the navigation bar color on Myspace?Best solution by Yahoo! Answers
- How do you change fonts and font colors on myspace?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.