• I am adding media queries such that I would like the background image to meet the edges of the frame. However, there is whitespace on both sides despite media query attempts to remove. Here is image example:
    https://lipnickey.com/pictures/f2-padding-problem.jpeg
    Here is media query. The image is in #zing. Really appreciate the help.
    @media screen and (min-width: 18em) {
    #zing {
    background:red;
    transform: scale(0.35);
    -moz-transform: scale(0.35);
    -ms-transform: scale(0.35);
    -webkit-transform: scale(0.5);
    -o-transform: scale(0.35);
    margin:0em;padding-left:-20em;padding-right:0em !important; width:100%;
    }
    }

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘remove padding on page’ is closed to new replies.