html - Styling <data:title/> in blogger -
i need change original line of code in blogger layout html/css make blog title red
<a expr:href='data:blog.homepageurl'><data:title/></a>
vaguely understanding doing , spending 150 minutes on experimenting managed wanted either of these 2 codes:
<a expr:href='data:blog.homepageurl'><h1 style='color: #ff0000'><data:title/></h1></a> <a expr:href='data:blog.homepageurl'><span style='color: #ff0000'><data:title/></span></a>
is there way make title red without adding <h1 ... or <span...
code?
or
is possible style <data:title/>
part of particular line of code?
(i know dumb question)
hopefully helps - see below.
(html)
<a expr:href="data:blog.homepageurl" class="title"><data:title/></a>
(css)
a.title { color: #ff0000; }
Comments
Post a Comment