Coinear (self-hosted): removing sidebars on a single page

  • I recently wanted to get rid of the sidebars (I’m using two, L & R), and expand the content to full width — only on one particular page. A bit of research turned up the solution, which I thought I’d post here in case anyone might need it too.

    I guess this only works with the self-hosted Colinear (not wordpress.com).

    Add the following to Customizer -> Additional CSS, replacing the “285” with the page number from your site.

    .page-id-285 .content-area {
    width: 100%;
    }
    .page-id-285 .right-sidebar {
    display: none;
    }
    .page-id-285 .left-sidebar {
    display: none;
    }

  • Hi there,

    This forum is for sites hosted here on the WordPress.com servers.

    For help with the self-hosted version of this theme, you can post in the WordPress.org forum:

    https://wordpress.org/support/theme/colinear

    You’ll need a free WordPress.org account to post – if you don’t already have one, you can register here:

    https://wordpress.org/support/register.php

    Be sure to provide a link to your site when you post so folks can help you more easily.

  • The topic ‘Coinear (self-hosted): removing sidebars on a single page’ is closed to new replies.