Vanilla Grey theme
Versions - Everything is up to date
I love the theme and have tweaked a few colors to suit my contrast needs.
Problem: Looking at a post in the forum, the text has no padding from the side margins.
Possible solution: In Firebug, I can see a bit of code (Line 12) that if I alter it will add the padding I need.
element.style {
background-color: #FFFFFF;
border: 0 none;
float: none;
font-family: 'Segoe UI',arial,verdana;
font-size: 14px;
line-height: 16px;
margin: 0;
min-height: 0;
min-width: 0;
outline: 0 none;
padding: 0 0 1em;
Question: Where do I find this bit of code? I can't find anything that calls for element.style
0
Answers
element.style tend to refer to dynamically added styles or inline styles, not in the style sheet
way to overrule is to put
!important, using the actual selector. e.g.padding: 0 0 1em!important;.Important shouldn't be overused, but this is one of the valid uses.
grep is your friend.