The whole site shifts to the right about three pixels when clicking certain links, like admin > menu, and then moves back again when clicking home, in Firefox 3. It is ok in Internet Explorer.

CommentFileSizeAuthor
#4 footer-before.jpg10.44 KBsapark
#4 footer-after.jpg13.69 KBsapark

Comments

sapark’s picture

I noticed that it happens on 'short' pages where the body is shorter than the sidebar, and the footer also shrinks in those cases to the width of the body instead of all the way across.

sapark’s picture

The footer expands all the way across if you put clear: both in #footer, #footer-message in layout.css.

psynaptic’s picture

Assigned: Unassigned » psynaptic
Status: Active » Postponed (maintainer needs more info)

Is this because of the scrollbars appearing? Someone else pointed this out but it just seems like normal behaviour.

Can you post a screenshot of what you mean about the footer? I thought I had a clear on those elements?

sapark’s picture

StatusFileSize
new13.69 KB
new10.44 KB

It's the scrollbars. It happens going back and forth between pages with and without scrollbars.

For the footer, Clear: both was in

#footer {
clear: both;
}

but not in

#footer,
#footer-message {
font-size: 0.9em;
}

and moving it from #footer to #footer, #footer-message seems to have fixed it on both IE and FF.

psynaptic’s picture

Status: Postponed (maintainer needs more info) » Fixed

Ahh, the latest CVS already has:

#footer,
#footer-message {
  font-size: 0.9em;
  clear: both;
}

It will get a release as soon as a release is properly justified, although I'm not sure many (any?) people will have updates turned on for this theme.

sapark’s picture

Here's a 'fix'.

in style.css

HTML {
  overflow: -moz-scrollbars-vertical;
}

This puts a grayed out vertical scrollbar on short FF pages.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.