Just another thought about the skull decoration ---
Depending on how it displays proportionate with the font, it might be preferable to code the width in em instead of percentage of screen width. If someone is reading on a very large screen with a smallish font, 10% would be enormous in comparison the text.
I usually put this kind of decoration into a custom font, so that it is actually a font character, but when using a small image, I use ems. (except for old Mobi7, where I think you MUST set it in pixels)
div.TxtBrk img
{
width: 4em;
max-width: 100px;
}
Last edited by GrannyGrump; 03-25-2019 at 01:07 AM.
|