Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #50879
    Will
    Participant

    I want to narrow the left side bar in the 3-column layout. It is already narrower than the right sidebar but I’d like to narrow it further and then widen the right-hand sidebar by the same amount. I’ve looked through this forum as best I can and don’t see this specific question addressed.

    Thanks

    #50882
    Sakin
    Keymaster

    @Will: Catch Evolution Pro theme is responsive design theme so adjusting width is little complex, as you need to adjust for various screen sizes. So, I just recommend you to change to large screens. In the following css, I have reduces the width of the third sidebar by 40px and increase the width of Right second sidebar by 40px as per your question. So, just add the following css in “Appearance => Theme Options => Custom CSS” box:

    /* For Screen size above 1060px */
    @media screen and (min-width: 1061px) {	
    	.three-columns .content-sidebar-wrap { width: 794px; }
    	.three-columns #secondary { width: 330px; }
    	.three-columns #third { width: 200px; }
    }
    /* For Screen size above 1224px */
    @media screen and (min-width: 1225px) {
    	.three-columns .content-sidebar-wrap { width: 960px; }
    	.three-columns #secondary { width: 400px; }
    	.three-columns #third { width: 200px; }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘side bar width adjustment in 3 column layout’ is closed to new replies.