|
#1

Jan 12, 2012, 07:40 AM
|
|
Good morning,
I am using atahualpa for a website with menus/submenus/subsubmenus. In the submenus for the previously selected menu, the background is setted for all the items (see the attachement). I saw some similar threads in the forum but they are not exactly what I need.
How could I disable only the background/font color changes for the whole menu while leaving the hover as it is?
Thanks a lot.
|
#2

Jan 12, 2012, 09:11 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
I'm not quite sure what you mean could you explain it with an example like:
I have the following menus
a
aa
ab
abc
ac
b
ba
bb
c
and I want.....
Remenber that CSS stands for Cascading Style Sheets and it meand it you assign a style to 'a' (in my example) it will apply to 'aa', 'ab', 'abc' and 'ac' because they are all children of 'aa' and the style 'cascades to them. So to keep 'abc' from having that style, you would have to setup a seperate style for 'abc'
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#3

Jan 12, 2012, 09:27 AM
|
|
When I firs login on the site the style for all the menus and submenus is the same:
.- orange background - blue text -> all menus
.- blue background - white text -> menus on hover
After clickig on a menu (VoIP) on the picture i get:
.- orange background - blue text -> normal menus
.- blue background - white text -> hover on menus
.- blue background - white text -> all the menus and submenus below current page (VoIP)
What I would like to have is
.- orange background - blue text -> normal menus
.- blue background - white text -> hover on menus
.- blue background - white text -> current page (VoIP)
.- blue background - white text -> all the menus and submenus below VoIP
|
#4

Jan 12, 2012, 10:36 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
Please go to ato->export/import settings, export your settings and attach them to a reply (paper clip icon)
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#5

Jan 13, 2012, 12:24 AM
|
|
Ok, here is the attached exported information.
Thanks a lot
|
#6

Jan 13, 2012, 03:41 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
try this in your CSS inserts
HTML Code:
div#menu1 ul.rMenu li.current-menu-item ul li a:link,
div#menu1 ul.rMenu li.current-menu-item ul li a:active,
div#menu1 ul.rMenu li.current-menu-item ul li a:hover,
div#menu1 ul.rMenu li.current-menu-item ul li a:visited,
div#menu1 ul.rMenu li.current_page_item ul li a:link,
div#menu1 ul.rMenu li.current_page_item ul li a:active,
div#menu1 ul.rMenu li.current_page_item ul li a:hover,
div#menu1 ul.rMenu li.current_page_item ul li a:visited,
div#menu1 ul.rMenu li ul li a:hover {
background-color: #FF6200;
color: #000;
}
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#7

Jan 13, 2012, 04:23 AM
|
|
It's still not there. There's the screenshot attached. The use case is still the same
After clickig on a menu (VoIP) on the picture i get (when browsing again on that menu) still the same:
.- orange background - blue text -> normal menus
.- blue background - white text -> hover on menus
.- blue background - white text -> all the menus and submenus below current menu (VoIP)
|
#8

Jan 13, 2012, 05:07 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
Look at your CSS inserts, you have two closing brackets '}' just before the new CSS and that is causing the new css to be ignored.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#9

Jan 13, 2012, 06:51 AM
|
|
Thanks I haven't seen that, but the result is still the same, the site is http://wp.grn.cat
Whenever you choose one of the items, the hoover stops working for anyhing under that item.
|
#10

Jan 13, 2012, 07:41 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
try adding the following
HTML Code:
div#menu1 ul.rMenu li.current-menu-item ul li a:hover,
div#menu1 ul.rMenu li.current_page_item ul li a:hover {
background-color: #445555;
color: #000;
}
and set the color to what you want
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#11

Jan 16, 2012, 01:59 AM
|
|
Thanks a lot, that will make the job. I really appreciate the effort you're putting on these theme
|
|