- Posts: 7
- Thank you received: 0
Top Menu Home Button & Virtuemart Tabs
-
laet
Inactive member - Topic Author
- New Member
Less
More
13 years 9 months ago #6922
by laet
Top Menu Home Button & Virtuemart Tabs was created by laet
Hi Guys,
Still working on the site have and gettting it nutted out. Some quick questions.
1. I want the Home button on the top menu to not be always the hovered colour. I only want the hover colour on mouse over - how do I do this?
2. With Virturmart - I want to add another tab "downloads" and have a spec sheet in there, can you point me in the right direction here.
Thanks heaps! - Laet.
Still working on the site have and gettting it nutted out. Some quick questions.
1. I want the Home button on the top menu to not be always the hovered colour. I only want the hover colour on mouse over - how do I do this?
2. With Virturmart - I want to add another tab "downloads" and have a spec sheet in there, can you point me in the right direction here.
Thanks heaps! - Laet.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 9 months ago #6925
by ivan.milic
Replied by ivan.milic on topic Re: Top Menu Home Button & Virtuemart Tabs
Hi,
1. We need your link
2. See this page:
www.simoneqdm.com/2009/05/25/how-to-add-...113-and-joomla-1510/
1. We need your link
2. See this page:
www.simoneqdm.com/2009/05/25/how-to-add-...113-and-joomla-1510/
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 9 months ago #6935
by ivan.milic
Replied by ivan.milic on topic Re: Top Menu Home Button & Virtuemart Tabs
Hi,
To remove different formating for active top menu item in templates\hot_ecommerce\css\template_css.php find next css entities and just remove lines I marked red:
...
#nav > li.active, #nav > li:hover, div.show_vm_cart {
background:<?php echo $topMenuText; ?>;
}
#nav li:hover a, #nav li.active > a {
color:<?php echo $topMenuHoverText; ?> !important;
}
...
To remove different formating for active top menu item in templates\hot_ecommerce\css\template_css.php find next css entities and just remove lines I marked red:
...
#nav > li.active, #nav > li:hover, div.show_vm_cart {
background:<?php echo $topMenuText; ?>;
}
#nav li:hover a, #nav li.active > a {
color:<?php echo $topMenuHoverText; ?> !important;
}
...
The following user(s) said Thank You: laet
Please Log in to join the conversation.
-
laet
Inactive member - Topic Author
- New Member
Less
More
- Posts: 7
- Thank you received: 0
13 years 9 months ago #6945
by laet
Replied by laet on topic Re: Top Menu Home Button & Virtuemart Tabs
Hi Ivan,
I tried what you advised but this took away all hover. I still want the buttons to hover but I don't want the "Home" button to hover / be selected by default. When this is selected in Joomla menus as default the home button shows as hovvered. I only want the buttons on the top nav bar to hover only when a the mouse is put over them this inlcudes the home button. Is it possibe? Thanks.
I tried what you advised but this took away all hover. I still want the buttons to hover but I don't want the "Home" button to hover / be selected by default. When this is selected in Joomla menus as default the home button shows as hovvered. I only want the buttons on the top nav bar to hover only when a the mouse is put over them this inlcudes the home button. Is it possibe? Thanks.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 9 months ago #6948
by ivan.milic
Replied by ivan.milic on topic Re: Top Menu Home Button & Virtuemart Tabs
Hi,
then change the css to look like this:
#nav > li:hover, div.show_vm_cart {
background:<?php echo $topMenuText; ?>;
}
#nav li:hover a {
color:<?php echo $topMenuHoverText; ?> !important;
}
notice that I removed: #nav > li.active and #nav > li.active,
then change the css to look like this:
#nav > li:hover, div.show_vm_cart {
background:<?php echo $topMenuText; ?>;
}
#nav li:hover a {
color:<?php echo $topMenuHoverText; ?> !important;
}
notice that I removed: #nav > li.active and #nav > li.active,
Please Log in to join the conversation.
Time to create page: 0.177 seconds