• Hi, I use the theme Sela. As a page template using the default settings, the main content and the right column (space for widgets). The main content is cropped from the left side, obviously there is room for annotations, type of insertion etc. I need to main content extend to the whole party while retaining the right column with Widgets. There is a possibility template settings on the Front Page, the text is on the whole width of the page,
    but do not see right column.
    How to solve this?
    Thank you for your advice.
    Axamith

Viewing 1 replies (of 1 total)
  • Hi @axamith!

    You could reduce the amount of spacing on the left with some custom CSS

    To add custom CSS, firstly set up a child theme or activate a custom CSS plugin.

    Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:

    @media screen and (min-width: 1180px) {
    .page-template-default .content-wrapper {
        padding-left: 55px;
    }
    
    . page-template-default .content-area {
        float: left;
        width: 765px;
    }
    }

    Let me know if that’s helpful or if any extra questions come up. 🙂

Viewing 1 replies (of 1 total)

The topic ‘column width’ is closed to new replies.