i am attempting something similar (moving the footer to the RIGHT side of the page, instead of the default which is on the left).
first, i copied my footer code from the style.css into the child theme, it looks like this:
/* Footer
-------------------------------------------------------------- */
#footer {
overflow: hidden;
clear: both;
max-width: 940px;
width: 100%;
margin: 0 auto;
padding: 0 0 30px 0;
font-size: 0.9166666666666667em;
color: #aaa;
}
#footer p { margin-bottom: 0; }
#footer a { color: #888; }
#footer a:hover { color: #64a2d8; }
.footer-left {
float: right;
width: 70%;
}
.footer-right {
float: right;
width: 30%;
}
}
.footer-left {
float: left;
width: 70%;
}
i noticed i can change the placement of the footer if i change this part of the code:
max-width: 940px;
i.e. if I make that 240 instead of 940, it moves it close to the center of the page. Unfortunately it doesn’t look like it’s possible to move the footer to the right side of the page using this method, but i’m sure there is some other way… anyone ever have any luck with it?