nophster
02-19-2009, 08:55 AM
Hi...
First off, I am a total newbie when it comes to CSS. That said, here is the code I assume deals with the heading in question.
#header { position: relative; height: 49px; background: #111; border-bottom: 1px solid #1c1c1b; font-family: Arial, Helvetica, sans-serif; }
h1 { font-size: 3em; font-weight: bold; text-transform: lowercase; line-height: 50px; float: left; letter-spacing: -1px; margin-left: 20px; font-family: Arial, Helvetica, sans-serif; }
h1 a { color: #89897c; }
h1 a:hover { text-decoration: none; color: #CDCDBF }
div.subtitle { line-height: 50px; font-size: 1.2em; color: #55554e; margin-left: 1em; float: left; text-transform: lowercase; }
Suppose the heading is "BloggerTotality", how would I achieve the result that the words "Blogger" and "Totality" are both different colors, even though they are part of the same heading?
First off, I am a total newbie when it comes to CSS. That said, here is the code I assume deals with the heading in question.
#header { position: relative; height: 49px; background: #111; border-bottom: 1px solid #1c1c1b; font-family: Arial, Helvetica, sans-serif; }
h1 { font-size: 3em; font-weight: bold; text-transform: lowercase; line-height: 50px; float: left; letter-spacing: -1px; margin-left: 20px; font-family: Arial, Helvetica, sans-serif; }
h1 a { color: #89897c; }
h1 a:hover { text-decoration: none; color: #CDCDBF }
div.subtitle { line-height: 50px; font-size: 1.2em; color: #55554e; margin-left: 1em; float: left; text-transform: lowercase; }
Suppose the heading is "BloggerTotality", how would I achieve the result that the words "Blogger" and "Totality" are both different colors, even though they are part of the same heading?