• Hey everybody,

    i am working on a website and using the amazing virtue wordpress-theme. now i am trying to make the page boxed with the footer at the bottom at fullwidth (virtue offers those two options for boxed- and fullwidth-design), but i havent figured out yet how to do it/to combine them. any suggestions would be helpful.

    i wanna make the page look similar to this one https://www.onairtime.org/.

    thank you for your help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • hannah

    (@hannahritner)

    Hey,
    So there actually isn’t an option to have a full width footer while using the boxed layout. You can create a similar look by giving your content a background color so it appears more boxed.
    Try pasting this into your custom css box in Theme Options > Advanced Settings:

    div#content {
        background: #333;
    }

    Hope that helps!

    Hannah

    Thread Starter widecom

    (@widecom)

    Hello Hannah,

    thank you for your reply. I just fixed the problem by changing the base.php and putting the ‘footer’ out of the ‘wrapper’ div -> works perfect ??

    ORIGINAL CODNIG:

    </div><!– /.wrap –>
    <?php do_action(‘get_footer’);
    get_template_part(‘templates/footer’); ?>
    </div><!–Wrapper–>
    </body>
    </html>

    ADJUSTMENT:

    </div><!– /.wrap –>
    </div><!–Wrapper–>
    <?php do_action(‘get_footer’);
    get_template_part(‘templates/footer’); ?>
    </body>
    </html>

    Best
    Lukas

    hannah

    (@hannahritner)

    Glad to hear it! ??

    Hannah

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Boxed Website with Fullwidth Footer?’ is closed to new replies.