MyBB Community Forums

Full Version: Forum got a horizontal scroll bar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello MyBB community, recently the forum somehow got a horizontal scrollbar, but I dont know? Since theres no content on the right/left side, and the scrollbar also can only used like 1cm, then it hits the end, you can view the page yourself here:

https://lfsgaming.de/

Screenshot:

[Image: 9XEcOwz.png]
I guess that it's because of the box-shadow + 100% width combination on few wrapper elements.

You can always add overflow-x: hidden; to body
The problem is a duplicated class (My mistake)

Go to ACP > Templates & Styles > Styles > Ignite > open ignite.css

search:

.separator {

Change it to

.divisor {

Now go to ACP > Templates & Styles > Templates > Ignite templates > Footer Group templates > open footer template

Search this:

<div class="separator"></div>

Replace like this:

<div class="divisor"></div>

Tell me if that fix the problem.
(2015-12-28, 03:42 PM)eNvy Wrote: [ -> ]The problem is a duplicated class (My mistake)

Go to ACP > Templates & Styles > Styles > Ignite > open ignite.css

search:

.separator {

Change it to

.divisor {

Now go to ACP > Templates & Styles > Templates > Ignite templates > Footer Group templates > open footer template

Search this:

<div class="separator"></div>

Replace like this:

<div class="divisor"></div>

Tell me if that fix the problem.
Thanks! That fixed it   Heart