The text within my sideboxes is pressed right up to the left edge. (See example) How can I pull it just slightly to the right?
Thanks!
The text within my sideboxes is pressed right up to the left edge. (See example) How can I pull it just slightly to the right?
Thanks!
Add some padding
I had tried that but with no success:
.sideBoxContent {
font-size:.975em;
padding:5px 0;
}
Maybe it's not .sideBoxContent...
padding:5px 0;
means 5px of padding on top & bottom, 0 on left & right.
If you want left & right padding, you need a value in the second position, or eliminate it and have only
padding:5px;
which will give 5px all around.