crskoglund
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Light Roast] Delink a page heading from top menu?Forum: Themes and Templates
In reply to: [Light Roast] Selective exclusion of sidebar?At the very top of the CSS file, you’ll find the following reset code:
body, html, div, blockquote, img, figure, label, p, h1, h2, h3, h4, h5, h6, pre, ul, ol, li, dl, dt, dd, form, a, fieldset, input, th, td { margin: 0; padding: 0; font-size: 100%; outline: 0; line-height: 1; }
Delete:
line-height: 1;
After which adding “line-height: 137%” to the body styles should work.
As for the sidebar still appearing on the homepage, I’m not sure why that code’s not working. Do you have your “read” settings set to “Static Front Page”?
Forum: Themes and Templates
In reply to: [Light Roast] content widthHi @tindeks2,
Thanks for the question. There is currently no way to do this via the customizer. I’ll look into including this feature in a future update.
In the meantime, you could accomplish this by adding the following to the bottom of the stylesheet:
#secondary { max-width: 20% !important; } #primary { max-width: 75% !important; }
Replacing the 20% and 75% with your preferred widths for the sidebar and content respectively.
Forum: Themes and Templates
In reply to: [Light Roast] Selective exclusion of sidebar?Hi @cliff3esler,
Currently there is no way of doing this through the customizer, but there should be! Thanks for the question and feedback. I’ll add it as a feature to the next theme update.
In the meantime, you could accomplish this by adding the following lines of code to the bottom of the stylesheet:
.home #secondary{ display: none; } .home #primary { max-width: 100% !important ; }
- This reply was modified 8 years, 1 month ago by crskoglund.
- This reply was modified 8 years, 1 month ago by crskoglund.
- This reply was modified 8 years, 1 month ago by crskoglund. Reason: formatting