Home › Forums › CSS › Fluid web displays to left on mobile and ipad › Reply To: Fluid web displays to left on mobile and ipad
July 2, 2016 at 8:09 am
#243329
Participant
Setting overflow: hidden
on #wrapper
will probably work here
#wrapper {
/* stuff */
overflow: hidden;
}
Not sure what causing this, the floated footer which isn’t cleared, or the image with inline width="100%
BTW there is an error in #nextopeningdiv
: missing semi-colon after the value for the color
property.