Support » Theme: Hiero » Footer size has changed

Viewing 1 replies (of 1 total)
  • Hi carahormiga

    You have a ‘widget-area-2’ which has a negative margin to hide it on the left side of the page.

    .site-sidebar {
    width: 300px;
    float: left;
    margin: 0 0 0 -300px;
    }

    If you want the widgets to show then add this to your custom css

    .site-sidebar {
    margin: 0;
    }

    But if you don’t want it to show up then do this

    .site-sidebar {
    display: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Footer size has changed’ is closed to new replies.