• I would like to widen the margins at least on my blog posts pages if not the front page as well. My site is: thefettle.com and as you will see there’s a lot of empty space to the right of the content. Is there anyway to edit the code to widen the margin so content can go here? I’ve been googling trying to find solutions but nothing I enter has even changed the appearance.

    Thanks!

Viewing 1 replies (of 1 total)
  • Theme Author monkey-themes

    (@monkey-themes)

    What do you mean to “I would like to widen the margins”?

    If you want do a full width page.
    1) Go to Backend –> pages –> edit page.
    2) Go to sidebar on the left. On the Box Page Attributes.
    3) Select the Full Width Page template.

    Or you can create a new page template:
    1) Create a new page file: page-yournametempalte.php
    2) Into the file write so:

    <?php
    /**
     * Template Name: Your Name Tempalte
     *
     */
    get_header(); ?>
    
    create here your page.
    
    <?php get_footer(); ?>

    If you want a Stylesheet modify.
    Edit the .container class:
    .container { max-width: your width size; }

    ps.: If you want editing the stylesheet or files, please create a child theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Widen Margins’ is closed to new replies.