hi guys,
i am have huge issues trying to target the hr element highlighted in screenshot. i’d like to remove the default padding from the hr. the hr element has a custom css class (whitespace-above-gift-card)
thanks for your help
Hey clairemartindigital,
The hr element has no padding and is 1px high, but it’s in the div “.template-page .content” which has a top & bottom padding of 50px, so this would reduce that padding to 10px:
#after_section_5 .template-page.content {
padding-top: 10px!important;
padding-bottom: 10px!important; }
Best regards,
Mike
Thanks Mike! You can close this.