• Resolved arifin16

    (@arifin16)


    Hii Team,

    what is the best way to have a two column layout, i want to keep the top menu, left side bar , and the rest area for content, i want to get rid of the right side bar/widget area for oxygen theme plz

    regards with thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter arifin16

    (@arifin16)

    https://inclusiontec.org/lido/ this is the site i am working on

    First, create a child theme. Search codex.www.ads-software.com for how to do that.

    The sidebar on the right is the “Secondary” sidebar in the Oxygen Theme.

    If you view the source code on a page with items in that widget location, you’ll see that they are placed inside a div tag that looks like this:

    <div id="sidebar-secondary" class="sidebar">

    So, you’ll edit the Child Theme style.css, or use the “Custom CSS” Jetpack plugin, and set this id to not display at all:

    #side-bar-secondary {
      display: none;
    }

    That just collapses the space used to nothing. The second part of the puzzle is to get your content to USE that extra space.

    You can do that within the style.css as well:

    .featured-wrapper {
    	width: 100%;
    }
    
    .content-wrap {
    	width: 100%;
    }
    Thread Starter arifin16

    (@arifin16)

    nice, it worked, thanks alot man ;))

    You’re welcome, and thanks for marking the thread “resolved”.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘oxygen theme help to remove the right sidebar’ is closed to new replies.