Make header no longer float at the top of the page leaving more room on the screen for reading recipes.
kingarthurbaking.com un-float header on recipes by ComputerDruid

Details
AuthorComputerDruid
LicenseCC Zero
Categorywww.kingarthurbaking.com
Created
Updated
Code size436 B
Code checksumf5c516b3
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name www.kingarthurbaking.com un-float header on recipes
@version 20241221.03.33
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://www.kingarthurbaking.com/recipes/") {
header.header {
/* undo floating header */
position: static !important
}
body.has-subnav {
/* no longer need to move the body out from underneath the header */
padding-top: 0 !important
}
}