- United States
- https://kjodle.net
-
I make zines, often in LaTeX. I also used to make things for WordPress; now I make things for ClassicPress. I also make other things. Life is a rich tapestry.
I am also at https://codeberg.org/kjodle.
- Joined on
2019-12-20
Block a user
Center the primary menu
Changed this in menus.css:
#belowheadermenu {
font-family: serif;
background: #fff;
border-top: solid 1px #333;
width: 50%;
margin: 0 auto;
}
to…
Center the primary menu
Changed this in style.css:
nav#top-menu,
nav#primary-menu {
font-size: 0.9em;
z-index: 100;
width: 50%; /* Need to set this via a variable */
margin: 0 auto;
}
to…
Center the primary menu
Changed this in style.css:
nav#top-menu,
nav#primary-menu {
background: #fafafa;
font-size: 0.9em;
z-index: 100;
width: 50%; /* Need to set this via a variable */
margin: 0…
Center the primary menu
That seems to have done the trick. Now just need to work on border and background issues.
Center the primary menu
Changed this in menus.css:
#belowheadermenu,
#belowheadermenu ul,
#belowheadermenu ul li,
#belowheadermenu ul li a,
#belowheadermenu #menu-button {
margin: 0;
padding: 0;
border:…
Center the primary menu
Changed this:
nav#top-menu,
nav#primary-menu {
background: #fafafa;
font-size: 0.9em;
z-index: 100;
}
to this:
nav#top-menu,
nav#primary-menu {
background:…