width 100% and padding break visibility
-
The
<div id="eu-cookie-bar"></div>
has styles for width applied that make part of the text go out of the screen on certain (small) screen resolutions.
In/wp-content/plugins/cookie-bar/css/cookie-bar.css
there is a width set for the div stated above as well as padding, which in total exceed 100% screen resolution.Instead of
width: 100%; padding: 3px 20px 2px;
I would suggest
width: 96%; padding: 3px 2% 2px;
which will allow multiple lines of Cookie Bar without problems to read.
Would be great to see an update to not need to insert Custom CSS on many pages!Thanks,
Jan
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘width 100% and padding break visibility’ is closed to new replies.