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?
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | stylecss.txt | 4.44 KB | Callie |
Comments
Comment #1
ipwa commentedThis 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
Comment #2
jaclayton commentedThanks 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.
Comment #3
Callie commentedI'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.
Comment #4
ppihus commentedThanks, Callie. Your code worked perfectly
Comment #5
ipwa commentedThanks 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...