I didn't repeat font-weight and display because it's in the default stylesheet so it'll get applied.
I changed the left/right padding to 1.1em because you mentioned it made the links display on two lines.
The code you think I have in the modified stylesheet is from the default stylesheet.
Edit: I may have misunderstood what this comment is about. I think it's in the wrong thread so I'm not sure what you're replying to. Is this about letter-spacing?
Re: Two-column-left
Here's what you have in your CSS file:
.module-navlinks ul, .module-navlinks li {
font-weight: bold;
font-variant: small-caps;
display: inline;
padding: 0.2em 2em;
}
Here's what I have in the Azure theme stylesheet:
.module-navlinks ul, .module-navlinks li {
font-variant: small-caps;
padding: .2em 1.1em;
}
I didn't repeat font-weight and display because it's in the default stylesheet so it'll get applied.
I changed the left/right padding to 1.1em because you mentioned it made the links display on two lines.
The code you think I have in the modified stylesheet is from the default stylesheet.
Edit: I may have misunderstood what this comment is about. I think it's in the wrong thread so I'm not sure what you're replying to. Is this about letter-spacing?