Can anyone see a reason why the <h1> </h1> in lines 7 and 8 is not applying?
Announcement
Collapse
No announcement yet.
an html query
Collapse
X
-
I doubt that anyone can answer this without being able to inspect a live page.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
-
All H1 tags are being styled by code in actinic.css:
Code:h1 { color: #8a8455; font-size: 16px; font-weight: 900; margin: 0; padding: 16px 0 4px; }
You'll need to add a classname to your H1 tag and add some styles for said class to the bottom of Design / Current Stylesheet.
Or, if this is a temporary message, just use some kludgy inline style. E.g:
Code:<h1 style="text-align:center; color:red; font-size:20px">You may find we have nipped out for a bit.</h1>
Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
Comment