The cookie bar is badly adapted for media query
-
The cookie bar is badly adapted for media query and because it is in the devices it looks bad since the code is not adapted “# eu-cookie-law input, # eu-cookie-law input: focus, # eu-cookie -law input: hover {
margin: 0% 0 0 5%;} ”
because the margin has to be first put in half query and then the first zero would have to be 40%, the other percentages are fine.It would have to look like this:
@media screen and (max-width: 600px) {
# eu-cookie-law input, # eu-cookie-law input: focus, # eu-cookie-law input: hover {
margin: 40% 0 0 5%;}
}
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘The cookie bar is badly adapted for media query’ is closed to new replies.