We recently upgraded our wiki (http://awoiaf.westeros.org/) to the latest MediaWiki release and with it the latest Vector skin. The default sidebar is too narrow to accomodate the common ad sizes, and the suggested fix for this is the following css:
div#mw-panel { width: 12em; }
div#footer, #mw-head-base, div#content { margin-left: 12em; }
#left-navigation { margin-left: 12em; }
When this is applied, however, we have an issue with the Page and Discussion tabs normally located at the top left of the main content area. Unless we remove position:absolute from the #left-navigation element, they end up being pushed further in and dropped below the top border so they hang from under it rather than sticking up above it. Since this overlays the top ad I couldn’t leave it in place to show for fear that it might generate false ad clicks.
My concern is that removing the position:absolute may cause other issues.