Myspace Profile 2.0 Basic Codes & Info
|
|
What is CSS? Cascading Style Sheet (CSS) is used to style a web-page. Less for function, more for looks and customization. HTML is used more for function.
Where do I enter my CSS codes? In Profile 2.0, you enter all your CSS codes directly into the CSS box under Customization (screen shots). HTML still works in 2.0. You will enter HTML directly into the section you want the HTML to appear. Examples of HTML would be an image tag, fonts, text alignment, embeds, scroll boxes, etc.
Why are style tags filtered in the CSS box of Profile 2.0? Since the codes you enter in the CSS box are already part of the page’s style, you don’t need style tags anymore. Think of the CSS box as one part of the myspace page style, so you are just entering codes within it.
How do I bold, italicize and underline my text in 2.0? Use this:
<strong> bold text </strong> <em> italic text </em> <span style="text-decoration:underline"> underline text </span>
How do I center my text and images in 2.0? Use this:
<div style="text-align:center;"> text and images go here </div>
How do I change the font style for the whole page? Enter this code below in the CSS Box. Adjust to your own preference.
* {font-family:"Georgia";} * {color:red;} * {font-size:12px;}
How do I just style specific text within any section? To target specific text you have to use this. Adjust to your own preference.
<span style="font-family:'georgia'; color:red; font-size:30px;"> text goes here </span>
How do I style the color of my links in 2.0? Enter the code below in the CSS Box. Change colors to your own preference.
a:visited {color:RED; text-decoration: none;} a:link {color:RED; text-decoration: none;} a:active {color: RED; text-decoration: underline;} a:hover {cursor: help; color: RED; text-decoration: underline;}
How do I place an image on my page in 2.0? You still use the same image tag as in 1.0. Place it the section you want it to appear in.
<img src=“URL”>
How do I make text/image a link in 2.0? You still use the same anchor tag as in 1.0. Place it in the section you want it to appear in.
<a href=“URL”> text/images go here </a>
|
|