Closed (won't fix)
Project:
Acquia Slate
Version:
6.x-1.4
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
24 Dec 2009 at 00:34 UTC
Updated:
6 Apr 2010 at 21:43 UTC
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
Comment #1
jwolf commentedComment #2
obeahman commentedsorry
Comment #3
adrian_xogo commentedFor 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;
........................................................................................................
Comment #4
jeremycaldwell commented