Hi, i would like to know if its possible add the main menu at footer_nav position, like this site: http://www.morganstanley.com/
Thanks
teitbite wrote:Hi
Please leave it like that and show me Your site.
#gkFooterNav li {
position: relative;
height: 25px;
line-height: 25px;
}
#gkFooterNav li ul {
display: none;
position: absolute;
left: auto;
background-color: #F2F2F2;
border-radius: 4px 4px 4px 4px;
bottom: 25px;
width: 150px;
}
#gkFooterNav li:hover ul {
display: block;
}
#gkFooterNav li ul li {
width: 100%;
float: none;
line-height: 18px;
padding: 3px 5px;
}
teitbite wrote:Hi
Please try to add this code to override.css and remember to allow using of this file:
- Code: Select all
#gkFooterNav li {
position: relative;
height: 25px;
line-height: 25px;
}
#gkFooterNav li ul {
display: none;
position: absolute;
left: auto;
background-color: #F2F2F2;
border-radius: 4px 4px 4px 4px;
bottom: 25px;
width: 150px;
}
#gkFooterNav li:hover ul {
display: block;
}
#gkFooterNav li ul li {
width: 100%;
float: none;
line-height: 18px;
padding: 3px 5px;
}
For now it's a guessing since I have no access to Your ftp to test how it looks like, but when I'll see this style in action we will be one step closer to the solution.
#gkFooterNav {
float: none;
}
#gkFooterNav ul {
text-align: center;
}
#gkFooterNav ul li a {
font-size: 15px;
color: #000000;
}
teitbite wrote:Hi
Some more code:
- Code: Select all
#gkFooterNav {
float: none;
}
#gkFooterNav ul {
text-align: center;
}
#gkFooterNav ul li a {
font-size: 15px;
color: #000000;
}
#gkFooterNav li:hover ul {
display: block;
}
teitbite wrote:Hi
You have not copied the code in full. This class is showing the first submenu when mouse is over the menu item:
- Code: Select all
#gkFooterNav li:hover ul {
display: block;
}
teitbite wrote:Hi
You have not copied the code in full. This class is showing the first submenu when mouse is over the menu item:
- Code: Select all
#gkFooterNav li:hover ul {
display: block;
}
#gkFooterWrap {
overflow: visible;
}
#gkFooterNav li ul {
left: 0;
width: 350px;
}
#gkFooterNav li:hover > ul {
display: block;
}
#gkFooterNav li ul li {
display: block;
}
#gkFooterNav li ul li a {
font-size: 12px;
}