Reputation: 97
On the following template is a css bug. If u resize your browser, you will see that the template sometimes has a horizontal scrollbar. Its not that nice for a responsive design. On iPhone6 (not landscape) i have the same effect. You can see the background-image on the right side. I tryed a lot but nothing helps. Does someone has an idea to fix it?
Upvotes: 1
Views: 63
Reputation: 32255
The causes of the issue are the extended headline Sectionalize. and col-* classes.
Use the below code to reduce the font-size at lower screen size.
@media (max-width: 480px) {
.v-center {
font-size: 40px;
}
}
Remove the col-*
classes above .container
Upvotes: 2
Reputation: 103
Inside id="section5"
you've got <div class="container">
inside
<div class="col-sm-10 col-sm-offset-1">
Remove this and it should sort it.
Upvotes: 1