Oxygen Theme – widen left sidebar

  • Unknown's avatar

    Hello,

    I need a bit of help to wident he left side bar on the oxygen theme, my CSS knowledge is pretty poor so I don’t know what i need to add to make the changes, can anyone help me?

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

  • Unknown's avatar

    To make the content area smaller and the sidebar bigger in the Oxygen theme, add this to your Appearance → Custom Design → CSS editor:

    .aside {
    	width: 32%;
    }
    .content-wrap,
    .featured-wrapper {
    	width: 65%;
    }

    Or to keep the content container on the right the same size and just increase the size of the left sidebar:

    .wrap {
    	max-width: 1200px;
    }
    .aside {
    	width: 37%;
    }
    .content-wrap,
    .featured-wrapper {
    	width: 61%;
    }
  • The topic ‘Oxygen Theme – widen left sidebar’ is closed to new replies.