under-menus in 5 columns as in the demo, how to ?

GK User
Wed Sep 03, 2014 4:10 pm
Hi,
Without any documentation, I can hardly find how you make on the demo a mainmenu with under-menus made of several columns and image as it can be seen here http://demo.gavick.com/joomla25/storefront/
with menu Women
can you please tell me what's needed for that ?
I installed Quickstart but there are no menus configurated this way
thanks for any help
User avatar
Gold Boarder

GK User
Fri Sep 05, 2014 8:49 pm
Hello,

In this case you have to use the Extended Menu Params tab in order set 5 columns for the subcontent and you have create a proper structure like:

Parent item
- submenu column title I
- - submenu column content
- submenu column title II
- - submenu column content
- submenu column title III
- - submenu column content
...
User avatar
Administrator

GK User
Mon Sep 22, 2014 11:13 am
Hi, Dziudek
can you tell me what to add to overrides.css in order to change under-menus background color (and text-color if possible) ?
I created an additional class for each under-menu (in admin/menus), but it works only for each link
the background of the entire under-menu stays white
(see attached)
thanks
User avatar
Gold Boarder

GK User
Tue Sep 23, 2014 2:29 pm
Please provide me an URL to your website.
User avatar
Administrator

GK User
Wed Sep 24, 2014 1:20 pm
I send it PM if possible
regards
User avatar
Gold Boarder

GK User
Wed Sep 24, 2014 8:52 pm
Please try to use the following CSS code:

Code: Select all
.menu-stand-parapluie .childcontent {
   background: #ff9600!important;
}
User avatar
Administrator

GK User
Mon Sep 29, 2014 9:16 am
Fine ! it works well
thanks
to change text-color in that under-menu (I'd like white text), I have to create css lines
.menu-stand-parapluie .childcontent a:
and
.menu-stand-parapluie .childcontent a: hover
that's right ?
User avatar
Gold Boarder

GK User
Mon Sep 29, 2014 11:14 am
Hello,

The first selector shouldn't contain the ":" char at the end.
User avatar
Administrator

GK User
Mon Sep 29, 2014 12:13 pm
Ok it was an error.
I add the following css at override.css, it works for link color but the a:hover doesn't work
Code: Select all
.menu-PLV div.childcontent a {
   color: #ffffff;
}

.menu-PLV div.childcontent a:hover {
   color: #96043A;
}
User avatar
Gold Boarder

GK User
Mon Sep 29, 2014 5:19 pm
Please try to use it with !important
User avatar
Administrator

GK User
Tue Sep 30, 2014 3:55 pm
Nope,
unfortunately it doesn't work with !important :(
Code: Select all
.menu-PLV div.childcontent a:hover !important {
   color: #000;
}
User avatar
Gold Boarder

GK User
Tue Sep 30, 2014 10:50 pm
I mean the following code:

Code: Select all
.menu-PLV div.childcontent a:hover {
   color: #000!important;
}
User avatar
Administrator

GK User
Thu Oct 02, 2014 9:58 am
SURE !!!
Why did I write that ? I need holidays.
thanks.
User avatar
Gold Boarder

GK User
Thu Oct 02, 2014 10:24 am
Oups
It does not work whatever.
Would you please check if the css ".menu-PLV div.chilcontent a:hover" is the right thing to write for that change ?
I tried ".menu-PLV ul li div.chilcontent a:hover" with no more success.
:(
User avatar
Gold Boarder

GK User
Fri Oct 03, 2014 12:04 am
The following code should works properly (you need a more specific selector so I've added an ID selector at the beginning):

Code: Select all
#gkExtraMenu .menu-PLV .childcontent a:hover {
   color: #000!important;
}
User avatar
Administrator

GK User
Fri Oct 03, 2014 8:19 am
Yipee !
thanks Dziudek. I couldn't fix it alone.
Have a nice day.
User avatar
Gold Boarder


cron