I have a test server running both Drupal 6 and 7. On Drupal 6 the menu items display nicely formatted between the brackets at the top of the site. In Drupal 7 I get a bullet list overlapping the left-hand bracket.

What am I doing wrong in configuring this theme?

CommentFileSizeAuthor
#3 stylecss.txt4.44 KBCallie

Comments

ipwa’s picture

This is the main reason there isn't a beta release for this theme in 7.x. I don't have time to work on this right now, but I'll add it to the Drupal Peru code sprint list and see if someone picks it up: http://groups.drupal.org/node/144524

jaclayton’s picture

Thanks for the response. If I get the chance, I'll take a look at the menu formatting, see if I can get something to work.

Callie’s picture

StatusFileSize
new4.44 KB

I'm relatively new to the drupal community and recently installed this theme and was having the same problem with Drupal 7 with the menu not displaying correctly however I have found the solution that worked for me.

I found that the style.css from the tar was missing the following CSS which I found in the zip version.

/*span.menu-items,*/

ul.primary-links li {
width:115px;
height:50px;
display:block;
float:left;
margin-left:12px;
border-right:1px solid #3B352C;
cursor:pointer;
padding:0;
}

ul.primary-links li.last{
border-right:0;
}

ul.primary-links li a.active{
color: #BDAFA8;
}

span.last-menu-item {
width:105px;
height:50px;
display:block;
float:left;
margin-left:12px;
cursor:pointer;
}

I've attached a txt file of the css for those who would like to view the entire style.css I'm using from the zip.

ppihus’s picture

Status: Active » Patch (to be ported)

Thanks, Callie. Your code worked perfectly

ipwa’s picture

Assigned: Unassigned » ipwa
Status: Patch (to be ported) » Fixed

Thanks but that's not how they worked in Drupal 6, where they had the description exposed, I have added support for this, we are now close to a Drupal 7 release, yay!

Commit: http://drupal.org/commitlog/commit/9518/18f950332cef62d2c48eafd12a60f471...

Status: Fixed » Closed (fixed)

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