I've got an annoying problem I can't seem to solve - I'm trying to get my footer to go all the way across but there is white space both on the left and right sides.
I'm very new to CSS so I've probably dug myself into this problem but I can't seem to find any solutions.
The site is kangaroobranding.com and I'm trying to get my footer to look like this. I'm in a Genesis child theme for wordpress and I have 3 footer widgets that have filler text in as well.
I think this is the code you need? - from my style.css file.
Also, whenever I edit my Wrap section the entire site goes haywire so I'm hoping for a solution that will allow my footer to go across the entire page without disrupting anything else.
I understand entirely now but I'm just not entirely sure how to do it yet, haha. Is there a code I can implement or do I place those two sections above the [wrap]? Sorry if it's obvious, I'm still learning haha.
I'm running a child theme on top of Genesis so the footer.php file I found was in the Genesis folder - probably should have mentioned this before, sorry, long day, hah.
The code is below:
<?php /* WARNING: This file is part of the core Genesis framework. DO NOT edit this file under any circumstances. Please do all modifications in the form of a child theme. */
genesis_structural_wrap( 'inner', '</div><!-- end .wrap -->' ); echo '</div><!-- end #inner -->';
do_action( 'genesis_before_footer' ); do_action( 'genesis_footer' ); do_action( 'genesis_after_footer' ); ?> </div><!-- end #wrap --> <?php wp_footer(); // we need this for plugins do_action( 'genesis_after' ); ?> </body> </html>
I got an error for any spot I tried to place the last . I feel like I'm so close to seeing the solution but I'm missing it, hah. Thank you all for your help, I do very much appreciate it.
<?php /* WARNING: This file is part of the core Genesis framework. DO NOT edit this file under any circumstances. Please do all modifications in the form of a child theme. */
<?php wp_footer(); // we need this for plugins do_action( 'genesis_after' ); ?> </body> </html>
It does say "This file is a core Genesis file and should not be edited" so I'm not sure if it's actually allowed, but just give it a try and see what happens.
I am having the same problem using a different theme (fresh cover) on http://theknoizpaper.com/ could you all direct me to the files I might be overlooking? Ive looked everywhere from footer to stlyesheet.
OMG, it does work!!! I had the EXACT same problem as RyanPayne; had searched for ever and couldn't find the appropriate answer... totally understood the solution here; Senff explained BEAUTIFULLY how we needed to get the footer 'outside' of the #wrap; and then... whistles & bells; Senff's code which TOTALLY WORKS.
I've got an annoying problem I can't seem to solve - I'm trying to get my footer to go all the way across but there is white space both on the left and right sides.
I'm very new to CSS so I've probably dug myself into this problem but I can't seem to find any solutions.
The site is kangaroobranding.com and I'm trying to get my footer to look like this. I'm in a Genesis child theme for wordpress and I have 3 footer widgets that have filler text in as well.
I think this is the code you need? - from my style.css file.
Also, whenever I edit my Wrap section the entire site goes haywire so I'm hoping for a solution that will allow my footer to go across the entire page without disrupting anything else.
Thank you very much!
Ryan
Right now you have this markup:
And this is what you need:
Hope that helps!
I understand entirely now but I'm just not entirely sure how to do it yet, haha. Is there a code I can implement or do I place those two sections above the [wrap]? Sorry if it's obvious, I'm still learning haha.
Thank you for your help!
Ryan
Also, if it helps, add a reset of
Thanks for your help!
</div>you can find, and move it right above the line<div id="footer-widgets">.If you can't find
<div id="footer-widgets">in your FOOTER.PHP, find the code that calls the footer widgets, and place the</div>above that.The code is below:
I got an error for any spot I tried to place the last . I feel like I'm so close to seeing the solution but I'm missing it, hah. Thank you all for your help, I do very much appreciate it.
It does say "This file is a core Genesis file and should not be edited" so I'm not sure if it's actually allowed, but just give it a try and see what happens.
You are a lifesaver, I've been stressing over this the entire day.
Thank you so much!
So just copy this file to the child them and make your changes. It will look the same and protect you from updates.
Thank you so much, it works!
OMG, it does work!!! I had the EXACT same problem as RyanPayne; had searched for ever and couldn't find the appropriate answer... totally understood the solution here; Senff explained BEAUTIFULLY how we needed to get the footer 'outside' of the #wrap; and then... whistles & bells; Senff's code which TOTALLY WORKS.
Thanks so much guys!!!! Truly appreciate it!! :)
Thanks for the code guys! :)