Page 1 of 1

[solved] hauki2, background link on top of menu

Posted: Wed Nov 24, 2010 10:29 pm
by karnbo
Hi team

Thanks to everyone supporting this great product:)

I've just started using CMSms and tried with the hauki2 theme. After some handons I manage to get the theme working.

Now. The button behind the menu overwrites the drop-down menu. Spent some hours on the net trying to solve it, but without success. Please see attached picture or look at "http://www.babytalkafrica.com/cmsms/" (this link is working at the moment but will probably stop working when the problem is solved!).
The theme, after my changes to make it work: http://www.babytalkafrica.com/cmsms/HaukiRules.xml

The link behind, that overwrites the menu, is encapsuled in a and a . Think the menu is more of a CMSms feature, why I think this question qualifies for the forum:) Any help greatly appreciated.

Specifications:
Linux 2.6.32.12-115.fc12.i686 #1 SMP Fri Apr 30 20:34:53 UTC 2010 i686
Apache/2.2.15
PHP API 20090626
http://www.babytalkafrica.com/info.php

Re: hauki2, background link on top of menu

Posted: Thu Nov 25, 2010 3:17 am
by Dr.CSS
Give your UL UL a z-index:200 and it will be fine, that is from using position: on those links...

Re: hauki2, background link on top of menu

Posted: Thu Nov 25, 2010 9:50 am
by karnbo
Dr.CSS wrote: Give your UL UL a z-index:200 and it will be fine, that is from using position: on those links...
Thanks!

#primary-nav ul {
position: absolute;
top: auto;
display: none;
        z-index: 200;
}

Did the trick!

Re: hauki2, background link on top of menu

Posted: Thu Nov 25, 2010 12:27 pm
by Dr.CSS