Community Forums › Forums › Archived Forums › Design Tips and Tricks › Wintersong – How to move Footer Output?
- This topic has 12 replies, 3 voices, and was last updated 11 years, 1 month ago by
LocalSEODude.
-
AuthorPosts
-
December 30, 2013 at 12:15 pm #82113
LocalSEODude
MemberHi all!
Chose the Wintersong Theme for a client that I'm helping mostly pro bono.
The Footer Output from Genesis Simple Edits is appearing on the side under the avatar, which has been almost doubled in size.
Question is: what needs to be done to get the Footer Output to display at the bottom of the page in the usual Footer location? (not sure yet if Footer Widgets will be added as well)
Thanks and Happy New Year!!
http://gods-farmacy.com/December 30, 2013 at 12:29 pm #82122nutsandbolts
MemberFind and remove this from your functions.php:
//* Reposition the footer remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 ); remove_action( 'genesis_footer', 'genesis_do_footer' ); remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 ); add_action( 'genesis_header', 'genesis_footer_markup_open', 11 ); add_action( 'genesis_header', 'genesis_do_footer', 12 ); add_action( 'genesis_header', 'genesis_footer_markup_close', 13 );
You may need to add or change the CSS to make it look the way you want, but that should move it back where it belongs.
Andrea Whitmer, Owner/Developer, Nuts and Bolts Media
I provide development and training services for designers • Find me on Twitter and Google+December 30, 2013 at 12:32 pm #82124nutsandbolts
MemberActually that isn't going to work - let me ponder on this for a minute....
Andrea Whitmer, Owner/Developer, Nuts and Bolts Media
I provide development and training services for designers • Find me on Twitter and Google+December 30, 2013 at 12:43 pm #82129LocalSEODude
MemberThanks for the reply Andrea!!
I but the code from Simple Edits and pasted it to Theme Settings --> Header and Footer Scripts
I think that's a step in the right direction?!
December 30, 2013 at 1:15 pm #82139Sridhar Katakam
Participant1) Follow the suggestion given by nutsandbolts in the 2nd post of this topic.
2) Additionally comment out or delete
add_filter( 'genesis_footer_output', 'wintersong_custom_footer' );
3) Add this CSS:
.site-footer { clear: both; }
December 30, 2013 at 1:16 pm #82140nutsandbolts
MemberDarn, I gave up too soon! 😀
Thanks for stepping in to help, Sridhar. I appreciate you!
Andrea Whitmer, Owner/Developer, Nuts and Bolts Media
I provide development and training services for designers • Find me on Twitter and Google+December 30, 2013 at 1:41 pm #82145LocalSEODude
MemberVery Close!!
How can the "Copyright © 2013 God's Farmacy | Web Design & Marketing by We've Got Your Customers" be aligned right while the "Return to top of page" is aligned left on the same line? (Is it a matter of checking CSS in other Child Themes and pasting it here or more complicated?)
Thanks Sridhar and Andrea!
December 30, 2013 at 1:43 pm #82147LocalSEODude
MemberGot part of it fixed - changed text-align from center to right.
Doesn't seem to be enough room in footer for "Return to top of page" to fit and that's why it is appearing on line above.
December 30, 2013 at 5:02 pm #82175LocalSEODude
MemberDoes the Header Class trump the Footer Class and that's why div class "go to top" is being bumped up a line? Thanks
December 30, 2013 at 5:07 pm #82177nutsandbolts
MemberLooks like you need some CSS for #creds and #gototop - they need to be told to float left (#gototop) and right (#creds), and they both need a width.
Andrea Whitmer, Owner/Developer, Nuts and Bolts Media
I provide development and training services for designers • Find me on Twitter and Google+December 30, 2013 at 7:45 pm #82208LocalSEODude
MemberThanks Andrea!
Added this to CSS (found in another theme) and it is now displaying correctly:
.gototop {
float: left;
width: 20%;
}.creds {
float: right;
text-align: right;
width: 75%;
}One last thing - "Return to top of page" link not working 🙁
When hovering over, link displays gods-farmacy.com/#wrap, but when clicked nothing happens.
December 30, 2013 at 9:12 pm #82216Sridhar Katakam
ParticipantDecember 30, 2013 at 9:35 pm #82219LocalSEODude
MemberWell done Sridhar!!
Thanks so much to both you and Andrea today!!
Footer is working properly!
Wishing you both a Very Happy New Year!!!!
-
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.