Forum Moderators: not2easy
Ta
Limbo
Guess what - all our Intranet users use the same browser - bet you can't guess what it is ;)
Not worried about SE's our SE uses meta.
Is there a way I could diplay it as an image?
something like: (excuse the loose garbage css terms)
H4 {
display: image(archive.gif)
position: follow
....
or something like that?
if so you coulddo something like:
#whatever h4 {
width: 200px;
height:200px;
background:url(myimage.gif) no-repeat bottom left;
vertical-align:top;
}
then maybe have your height a little greater than the image so the h4 sits above it.
just a theory.
good luck
ben
i.e.
<body id="archived">
then without changing any HTML you can then specifically target the <h4>'s on archived pages and give them a different background image or something? (with the background image containing the text you want to display..)
#archived h4 {different style rules from normal <h4's> here}
Suzy