Theme switcher
wiki » PagesetterAdminMenu
CSS changes for display of Pagesetter menu
The pagesetter module has a bit of an old fashioned admin menu consisting of html tables with javascript. This gives problems in a default BlankTheme install. The following code added to content.css in the Zikula specific part will make sure that the admin part of pagesetter is displayed and that the dropdown menu is visible when hovering the main menubar. It is not perfect, since you have to scroll down and when your theme is small also left and right, but at least the options are there.Pagemaster is the succesor of pagesetter for Zikula and will have an admin menu that will work out of the box with Blanktheme.
/* ### Pagesetter admin menu ### */
/* Force browser to use a scrollbar if pagesetter width is too large. */
.guppy
{
width: 100%;
padding: 0px;
overflow: scroll;
position: relative;
}
/* Avoid pagesetter menu <-> yaml problem */
div.psmenu table
{
border-collapse: collapse;
border: none;
margin: none;
width: auto;
z-index: 1000;
}
/* Force browser to use a scrollbar if pagesetter width is too large. */
.guppy
{
width: 100%;
padding: 0px;
overflow: scroll;
position: relative;
}
/* Avoid pagesetter menu <-> yaml problem */
div.psmenu table
{
border-collapse: collapse;
border: none;
margin: none;
width: auto;
z-index: 1000;
}
