In the Theme set up for ABeesParadise I have checked 'Primary Links'.

In the Primary Links menu /build/menu-customize/primary-links I see a hierarchy of links ie parent, child.

The 'expanded' box is checked for the parent but this does not render the child in the menu.

Am I doing something wrong?

Comments

Anonymous’s picture

Also I can't figure out how to de-activate or move the menu at the top of the theme (which mirrors itself down the bottom and doesn't appear to have a block either).

interface-web design’s picture

1. Please add the following code in the below class. Header region has been added. These need to be added in page.tpl :

<div class="Rightlinkswraper">
<?php print $header ?>
<?php if (isset($primary_links)) : ?>.....<?php endif; ?>
</div>

2. Now add the following css at the end of your style.css:

.Wraper .Rightlinkswraper  h2{
  display:none;
}
.Wraper .Rightlinkswraper .content {
  margin:0;
}
.Wraper .Rightlinkswraper ul {
  float:right;
 margin:0px;
}
.Wraper .Rightlinkswraper ul li ul {
  display:block;
 top:20px;
 background:#d88abc;
 border:none;
}
.Wraper .Rightlinkswraper ul li ul ul  {
  top:0px;
  left:150px;
}

.Wraper .Rightlinkswraper ul li {
  border:none;
  display:block;
 float:left;
 margin:0px;
 padding:0px;
 background:none;
 border-right:1px solid #AFCCD0;
  padding-left:5px;
  padding-right:5px;
}
.Wraper .Rightlinkswraper ul li:hover,.Wraper .Rightlinkswraper ul li.over {
  background:none;
}
.Wraper .Rightlinkswraper ul ul li:hover,.Wraper .Rightlinkswraper ul ul li.over{
  background:#e3accd;
}
.Wraper .Rightlinkswraper ul li:hover li,.Wraper .Rightlinkswraper ul li.over li {
  width:150px;
 padding:0px;
 border:none;
 border-bottom:1px dashed #ffffff;
}
.Wraper .Rightlinkswraper ul li:hover li.last,.Wraper .Rightlinkswraper ul li.over li.last{
  border-bottom:0px;
}
.Wraper .Rightlinkswraper ul li.first{
  border:none;
}
.Wraper .Rightlinkswraper ul ul li.menuparent{
  background:#e3accd
}
.Wraper .Rightlinkswraper ul ul li.menuparent:hover,.Wraper .Rightlinkswraper ul ul li.ie-over{
  background:#e3accd;
}
.Wraper .Rightlinkswraper ul li a:link,.Wraper .Rightlinkswraper ul li a:visited{
  display:block;
 float:left;
 color:#AFCCD0;
 font-size:12px;
 text-decoration:none;
}
.Wraper .Rightlinkswraper ul li ul a:link,.Wraper .Rightlinkswraper ul li ul a:visited {
  color:#FFFFFF;
 padding-top:6px;
 padding-bottom:6px;
} 

3. Next, you will need to install Nice menus. Nice menu can be installed from the URL http://drupal.org/project/nice_menus [You will find the details about how to use nice menu, on this page]. Enable the primary link in Nice menus.

4. In the Block settings, /admin/build/block, assign nice menu block into the newly added header region.

It should work fine.

Anonymous’s picture

Status: Active » Fixed

Thank you, your instructions and theme support were great.

Status: Fixed » Closed (fixed)

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