.loop-default.style-default.content-sidebar .post-box:not(:last-child) { margin-bottom: 14px; }
Nice digging.I've found if you prefer the default styling, you can plug this in your Additional CSS and it'll space it out:
.loop-default.style-default.content-sidebar .post-box:not(:last-child) { margin-bottom: 14px; }
Nice digging.Do you use a child theme to make custom edits, or generally keep your custom styles in Additional CSS?
I always recommend a child theme because you can organize all of your custom code in one place, including template edits. This will save you time debugging if you know all of your custom code/CSS is in one place, and you will have a lot more flexibility and power by writing code in a code editor.I popped it in Additional CSS. Which is better?
Ray
style.css
file instead of dirtying up your site's souce code by printing inline, which the Additional CSS panel does.I always recommend a child theme because you can organize all of your custom code in one place, including template edits. This will save you time debugging if you know all of your custom code/CSS is in one place, and you will have a lot more flexibility and power by writing code in a code editor.
Plus, your custom CSS will load from your child theme'sstyle.css
file instead of dirtying up your site's souce code by printing inline, which the Additional CSS panel does.
style.css
file of your child theme is the best place for your custom styles, yes.