Hello!

I'm not sure if it was always like this, but when I'm on my website, if my browser window is smaller than my content, there's no horizontal scroll bar. All of the content on the right side can't be seen.

I've already tried everything I can think of to fix this... I've added
body {
overflow: auto;
}

in several of the css files for the Jackson theme, and I've tried changes a few instances of overflow elsewhere to "auto" rather than "hidden" or something...

What's the problem? (Note: I'm not entirely certain that it's 7.x-1.1. It might be the 1.0 version.)

Anyway... hope you can help!

Comments

soundspawn’s picture

Not really a solution so much as a workaround...

themes/jackson/styles/styles.css, on/around line 110:

#page-wrapper {
  overflow: hidden;
}

Change to:

#page-wrapper {
  //overflow: hidden;
}

Or remove entirely I suppose.

You can then set overflow: hidden as needed. This seems to pull up a horizontal scroll bar on all pages (with a minimal amount of scrolling available).

iamnotneo’s picture

Priority: Critical » Normal
brentbice’s picture

Status: Active » Closed (fixed)
erinnaner’s picture

Issue summary: View changes

.