Skip to content Skip to sidebar Skip to footer

Css Container Errors Everywhere - Javascript Appears When Page Has Shrunk

having an issue with a javascript element. <

Solution 1:

You assigned a fixed height to the container for this elements.

CSS:

#frontpage-Button-Cont {
width: 100%;
height: 135px;
text-align: center;
}

the height attribute (works in chrome then) or add overflow: auto to have it in a container with scroll bars

#frontpage-Button-Cont {
width: 100%;
height: 135px;
text-align: center;
overflow: auto;
}

Post a Comment for "Css Container Errors Everywhere - Javascript Appears When Page Has Shrunk"