/* * Theme Name: _s * * Layout: Content-Sidebar * * Learn more: https://developer.wordpress.org/themes/basics/template-files/ */ .site { display: grid; grid-template-columns: auto 25%; grid-template-areas: "header header" "main sidebar" "footer footer"; } .site-header { grid-area: header; } .site-main { grid-area: main; overflow: hidden; /* Resolves issue with
elements forcing full width. */ } .widget-area { grid-area: sidebar; } .site-footer { grid-area: footer; } .no-sidebar .content-area { float: none; margin-left: auto; margin-right: auto; } .no-sidebar .site-main { margin-right: 0; }