• Resolved kiparks

    (@kiparks)


    I see the following line in inc/customizer/layouts.php that sets the default page layout to two columns:
    $default = 'two-column-default';

    I don’t want page layouts at all (every page on my site should be one column), but I can’t find a way to remove/disable the function in my child theme. I’ll settle for just being able to change the default to one-column. How would I go about doing this?

    Other themes provide a WP Customizer option to set the default layout, I would hope that future releases add a dropdown so people can change the default more easily.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    You can use the following custom CSS in your child theme’s style.css if you wish to provide the full width layout of the website without using the sidebar :

    @media only screen and (min-width: 61.063em){
    .layout-two-column-default .content-area {
        width: 100%;
    }
    }

    Hope this Helps,

    Best regards !!

    Thread Starter kiparks

    (@kiparks)

    Thanks, its a suitable workaround.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable Page Layouts’ is closed to new replies.