h4 headings missing top padding

• May 17, 2014 - 04:04
Type
musescore.org
Severity
S4 - Minor
Status
closed
Project

The h4 headings in the handbook have padding-bottom of 12px but a padding-top of 0px. This looks wrong because it means the heading is closer to the text above it than the text below it (that it actually corresponds with). h4 should have a padding-top of 12px (just like h3 headings).

For a sample see the "Adjusting playback volume..." heading on the Dynamics page.


Comments

The uneven spacing is especially noticeable at http://musescore.org/en/development

Current layout of headings is uneven
.ms h4 {padding:12px 0 0}
screenshot of current page

The proposed layout would use equal padding above and below the headings
.ms h4 {padding:12px 0}
screenshot of proposed style

It is also possible that the current layout was just a typo, and the padding was supposed to be on the top rather than the bottom
.ms h4 {padding:12px 0 0 0}
screenshot of alternate style proposal

Attachment Size
proposed-alternate.png 10.56 KB
proposed.png 12.21 KB
current.png 12.06 KB
Status (old) active closed

Thanks a lot David for pointing this out. I went along with your .ms h4 {padding:12px 0} proposal. Fixed now.