BlogTheme
BlogTheme copied to clipboard
Site global H1 "floats" in over the navigation in Chrome
Site global H1 "floats" (i.e. "Aron Cedercrantz") in over the navigation in Chrome (verified on OS X and Windows).
I fixed this by adding this hack:
/* WTF Chrome? Hack: http://stackoverflow.com/a/13587388/79202 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
h1 { left: 0.9em; }
}
Probably not the correct fix, but it makes it look okay.
Better fix:
- Reverse the
h1andh2lines inheader.html. - Delete the
position,display, andtoprules from theh1CSS.