Support » Fixing WordPress » Twentythirteen Theme issue: Sidebar widget area messes up the Footer widget area

  • Hi guys,

    I’m working on a client site and one of the last issues I’ve to fix is when I added a sidebar widget area to view previous posts, it makes the 4 column footer widget area turn into a 3 column widget area which only goes 75% across width-wise (as if the sidebar affects the footer area too). How can I keep the sidebar widget area and keep a 100% width footer widget area?

    Reference: http://corkpsychotherapyandtraumacentre.ie/blog/
    …and compare that to any other page. Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • See this custom CSS:

    .site-footer .widget-area {
    	max-width: 100%!important;
        position: static!important;
    }
    .sidebar .site-footer .widget {
    	position: static!important;
    }

    margin: 0 auto; seemed to be a challenge for me ;)

    Thread Starter joewinfield91

    (@joewinfield91)

    Hi Samuel,

    Thanks for the reply. Do you mean to add this css in? It doesn’t make any difference with this. I think it might be a structural issue along the lines of the sidebar widget area eating into the footer widget area. I’m not too sure though.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Twentythirteen Theme issue: Sidebar widget area messes up the Footer widget area’ is closed to new replies.