It sounds like you need a specific CSS selector to grab the <ol> and <ul> elements that are the first "child" of another element.CSS Selectors Reference (w3schools.com) In general, this might work for you, but also might have unintended issues:ol:first-child,
ul:first-child {
padding-top: 0;
mar...