View Single Post
  #2 (permalink)  
Old May 4th, 2008, 15:28
Aso's Avatar
Aso Aso is offline
Chief Moderator

SuperMember
Join Date: Oct 2007
Location: UK
Posts: 977
Blog Entries: 2
Thanks: 5
Thanked 19 Times in 17 Posts
Send a message via Skype™ to Aso
Re: Need help please

Something like this should work;
HTML: Select all
<h1><span>F</span>OR<span>U</span>MS
And for your CSS;
Code: Select all
h1 {
/*Styles for heading*/
}
h1 span {
color: /*Different colour*/
}
You can also use the CSS pseudo-element :first-letter to style the first letter of an element, without any additional HTML markup.
Reply With Quote