dobarkod / cookie-banner

JavaScript based cookie-info banner for complying with EU cookie law
MIT License
425 stars 85 forks source link

Padding or margin #17

Closed chrisgdclarke closed 7 years ago

chrisgdclarke commented 9 years ago

Is it possible to add a padding or margin so the scrollbar does not cover up the banner in internet explorer?

zytzagoo commented 9 years ago

Generally, you should be able to add/override practically anything (using your own page/site's CSS).

If that doesn't really help you all that much, please consider providing more details :)

chrisgdclarke commented 9 years ago

Thank you I've figured it out and learnt about the !important at the same time! Looks good now! This was the code I needed in CSS:

.cookiebanner { padding-right: 30px !important; background: rgba(0, 0, 0, 0.8) !important; }

Thanks for your quick reply. Excellent banner!