I am currently working on a dummy site. It is queencharlottesoaps.com/test. I normally keep it password protected, but I removed that for you.
Printable View
I am currently working on a dummy site. It is queencharlottesoaps.com/test. I normally keep it password protected, but I removed that for you.
to change background color of the footer open includes/templates/YOUR_TEMPLATE/css/stylesheet_footer_menu.css
find the following declaration and change the highlighted section as indicated.
#footer {
margin: 0 auto;
text-align: left;
background-color: #DCDCDC;
width: 960px;
height:112px;
clear:both;
}
That also changes the background color of legal and "Powered by Zen Cart" stuff. I want to keep that stuff at #DCDCDC and change the rest of the footer to another color. Is there any way to do that?
Thank you!
open stylesheet_footer_menu.css
find the following add a background color where indicated
#siteinfoLegal {
margin:0 auto;
padding: .5em 0 0;
font-size: 0.9em;
text-align:center;
width:100%;
line-height:normal;
background:#fff;
clear:both;
}
#siteinfoLegal a {padding: 0 0.5em 0 0.5em;color: #000;font-weight:bold;white-space: nowrap; }
#siteinfoLegal a:hover {color: #000;background: #EAC27C;}
That worked. Thank you very much!
Clyde, sorry to bug you again, but I would appreciate it if you could please answer two questions for me:
1. How can I remove the space circled in red in this screenshot?
2. Is there any way to make the lines circled in red in this screenshot independent of amount of links next to them? As you can see, the more links that are to the left of the lines, the longer they are. I want to make all of the lines one size, regardless of how many links are to the left of them.
I am testing a dummy site at "queen charlotte soaps .com /test" (without the quotations and spaces).
Clyde, just to get back about the earlier post, that area I circled in red was able to be removed by removing the patting from margin-bottom from #footer in the stylesheet_footer_menu.css file. I just figured I would mention that to help anyone else who may want to change that.