integrity_designs:
I don't know what has happened to my header section where the Home and Log In is.
They have gone under each other.
Also, how do I get a border around the entire footer menu please?
One other thing, how come when I installed this module, it took away the bottom navigation colour bar where the copyright etc is? Can this be changed back still without interfering with the footer menu module?
I have searched this thread etc for these answers but have had no luck in finding an answer.
Kind Regards
1st: open includes/templates/YOUR_TEMPLATE/css/stylesheet
find the following declaration:
#navMainWrapper, #navSuppWrapper, #navCatTabsWrapper {
margin: 0em;
background-color: #2f4b73;
background-image: ;
padding: 0.5em 0.2em;
font-weight: bold;
color: #ffffff;
height: 1%;
}
and replace it with this:
#navMainWrapper {
margin: 0em;
background-color: #2f4b73;
background-image: ;
padding: 0.5em 0.2em;
font-weight: bold;
color: #ffffff;
height: 1%;
}
#navSuppWrapper, #navCatTabsWrapper {
margin: 0em;
background-color: #2f4b73;
background-image: ;
padding: 0.5em 0.2em;
font-weight: bold;
color: #ffffff;
height: 1%;
}
2nd: open includes/templates/YOUR_TEMPLATE/css/stylesheet_footer_menu.css
find the following declaration and add the highlighted portion
dl {margin: 0 0 3px 0;padding:0;clear:both;height:79px;width:100%;border:1px solid #000;}/Adjust the height and width of the menu/
Note: you may need to adjust the padding somewhat.