I've been trying, to no avail, to get either Cute Menu or Nice Menu to function in the header middle region. While the parent links work fine, the drop down children links get blocked or cut off by the front preface/content regions. I've fiddled with z-index and overflow in style.css sheets of both the modules and of Acquia Slate; the best I could get was the links to display on the front page with the front preface active, but every other page has the sidebar first region pushed over to the right, and everything else gets pushed down the page. Does anyone have any advice/solutions?

Comments

jwolf’s picture

Category: bug » support
obeahman’s picture

sorry

adrian_xogo’s picture

For the moment I solved the problem with a little trick, you can see the result here: http://xogodescuberto.arkipelagos.net/

editting the style.css inside themes/acquia_slate/style.css this two paragraphs:

.....................................................................................................

/* Content regions

-------------------------------------------------------------- */

#content-wrapper {

float: left;

}

#content-top {

background: transparent url('images/cropped/seascape-header.jpg') no-repeat left top;
padding: 0;

overflow: visible;

........................................................................................................

/* block not-front content-top */

body.not-front #content-top div.block-wrapper {

background: transparent url('images/content-top-bg.png') repeat;
/* I think it's better adding opacity */
opacity: 0.7;
filter: "alpha(opacity=70)"; /* expected to work in IE 8 */
filter: alpha(opacity=70); /* IE 4-7 */

color: #000;

margin: 15px 0 0;

padding: 50px;

........................................................................................................

jeremycaldwell’s picture

Status: Active » Closed (won't fix)