Hi,
I have current padding on a background image set to 66px 15px 100px 0px, done through cornerstone editor adding values in through the padding section.
I want to have padding at ‘14%’ at this size, this is my CSS for my media query:
@media (max-width: 2600px) and (min-width: 1500px)
.hero-header {
padding: 14%;
}
the section has the class of ‘hero-header’ but the padding isnt working, and is crossed out on inspect element when checked, how can I fix this?
Thanks!