The menu is saying that it's using the footer..
However, I would to add an additional footer underneath the menu so, that it says copyright etc that's to the right.
The menu is saying that it's using the footer..
However, I would to add an additional footer underneath the menu so, that it says copyright etc that's to the right.
If that theme has a footer.php, under that area you mention you could add a new area like this:
<div id="footer_copyright">
<p>Copyright info here</p>
</div>
Then add something like this to your stylesheet:
#footer_copyright {
float: right;
}Thanks!
You must log in to post.