CSS Columns

  • Unknown's avatar

    Hello, I’m trying to change my content from containing 2 columns to 1. I am using The Goodz Magazine Theme and it only has options for 2 or 3 columns so I was wondering if I could edit it myself with custom CSS.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi,

    The below Custom CSS code seems to do what you want.

    .has-sidebar {
        padding-right: 10px;
    }
    @media (min-width: 992px)
    {
        .col-md-9 {
            width: 100% !important;
        }
    }
    #secondary {
        display: none;
    }

    If you want the sidebar to be somewhere else or to look different, please let me know and I’ll do my best to help you.

    Take care,

    Onur

  • The topic ‘CSS Columns’ is closed to new replies.