Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

Horizontal menu > sub > sub missing (not visible)
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: Horizontal menu > sub > sub missing (not visible)
#10225
Horizontal menu > sub > sub missing (not visible) 13 Years, 2 Months ago Karma: 0
Okay, so I have a website: www.keya.com

I am trying to get the sub menu of the sub menu to show up.
I can see in the code that the menus are there, but just not visible.

It wasn't a requirement when I first made the site, so wasn't an issue, but not it is required... Is it in my CSS?

Thanks!
The administrator has disabled public write access.
 
#10227
Re:Horizontal menu > sub > sub missing (not visible) 13 Years, 2 Months ago Karma: 746
Hello,

This is a problem with site template CSS styles. Open site template CSS file (<joomla_directory>/templates/keya/css/template.css), find the following code:

Code:


#pillmenu li ul {
    background: none repeat scroll 0 0 #E0E0E0;
    border-bottom: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    display: none;
    height: auto;
    opacity: 0.95;
    position: absolute;
    width: 225px;
    z-index: 200;
}



and replace it with:

Code:


#pillmenu li ul {
    background: none repeat scroll 0 0 #E0E0E0;
    border-bottom: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    /*display: none;*/
    height: auto;
    opacity: 0.95;
    /*position: absolute;*/
    width: 225px;
    z-index: 200;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#10249
Re:Horizontal menu > sub > sub missing (not visible) 13 Years, 2 Months ago Karma: 0
Thanks! that did the trick in Firefox, Chrome/Safari but in IE7 the menus don't have a background except right around the words.
The administrator has disabled public write access.
 
#10272
Re:Horizontal menu > sub > sub missing (not visible) 13 Years, 2 Months ago Karma: 746
Try to add the next CSS rule:

Code:


#pillmenu .yuimenu UL LI A.yuimenuitemlabel 
{
 *display: block;
}



Regards,
ARI Soft
The administrator has disabled public write access.
 
#10281
Re:Horizontal menu > sub > sub missing (not visible) 13 Years, 2 Months ago Karma: 0
That didn't seem to change anything. Any other thoughts?
The administrator has disabled public write access.
 
#10285
Re:Horizontal menu > sub > sub missing (not visible) 13 Years, 2 Months ago Karma: 746
Can try to help if you provide temporary access to your Joomla! backend by email.

Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 12