Forum Moderators: not2easy
Is there a way to achieve this without using relative positioning?
I've tried a few types of vertical alignment but without any luck.
h1 {
font-weight: normal;
font-size: 2.65em;
color: #F8B000;
position: relative;
top: 5px;
}
I've tried:
h1 {
font-weight: normal;
font-size: 2.65em;
color: #F8B000;
line-height:1em;
margin-bottom: -0.2em;
}
Which worked quite well, except on one of the pages where I have a floated div with one of these headings, which disappears when a negative margin is applied.