Home › Forums › Design › Images overlapping website body border › Reply To: Images overlapping website body border
September 23, 2016 at 7:59 am
#245823
Participant
Great pictures! Have you tried z-index
? Like:
body:before, body:after {
/* stuff */
z-index: 1;
}
To loose the scrollbars, you may want to look into losing the width
and height
attribute/value pairs on the img
-tag in the HTML, and in the css have img { max-width: 100%}
.