This topic has 5 replies, 4 voices, and was last updated 8 years, 8 months ago ago by Stan Russell
I have custom menu in my footer. The menu aligns vertically. How can I make the menu appear horizontally ?
Also how can I edit the link colors in the table that is in the footer ?
Hello,
1) I’ve changed layout for 1 column and added this code in Global Custom CSS.
.footer-top .widget_nav_menu li {
width: initial;
padding: 0 10px;
}
Please check the footer menu.
2) Please clarify what table you mean?
Maybe provide screenshot for our better understanding.
Regards,
Robert Hall
I would like to change the link colors of the menu that is in the fooer. (a normal, unvisited, visited, hover, and active)
Hello,
Please use this css code:
.footer-top .menu > li > a {
color: red !important;
}
.footer-top .menu >li.current-menu-item >a {
color: black !important;
}
.footer-top .menu > li > a:hover {
color: red !important;
}
Write your color values.
Best regards,
Jack Richardson.
Hello smariano,
please set needed colors and add following css code to your Global css:
.footer-top a{color:blue!important}
.footer-top a:hover{color:green!important}
.footer-top a:active{color:yellow!important}
.footer-top a:visited{color:brown!important}
Regards,
Stan Russell.
You must be logged in to reply to this topic.Log in/Sign up