How to make the two columns on the Staff-Group pages wider

Support Area Forums Foundation How to make the two columns on the Staff-Group pages wider

Viewing 5 posts - 1 through 5 (of 5 total)
URL to the page in question:
  • Author
    Posts
  • #10587
    Edward Garrett
    Participant

    Bill,
    I would like to make the two columns on the Staff-Group pages wider. i.e. two equal columns across the full-width page.

    Here is one of the pages…
    http://inwellecentre.org/new/staff-group/advisory-board/

    Thanks, Bill

    #10595
    Bill Robbins
    Moderator

    Ed,

    You can place this in the Custom CSS box. It will hide the sidebar, make the content area full width and then set the staff members to form two columns:

    
    .term-advisory-board #content {
    	width: 100%;
    }
    
    .term-advisory-board #sidebar {
    	display: none;
    }
    
    .term-advisory-board .staff-member {
    	width: 46%;
    	margin: 2%;
    }
    

    Hope that helps,
    Bill

    #10603
    Edward Garrett
    Participant

    Morning, Bill.
    Thanks for your response…However, the page didn’t change. http://inwellecentre.org/new/staff-group/advisory-board/

    Below is what all of my Custom CSS looks like…

    I’m sure you’ll see the fix immediately…

    #navigation .menu li ul {
    width: 260px;
    }

    #navigation .menu li li a,
    #navigation .menu li li a:visited {
    width: 240px;
    }

    #home-widgets {
    margin-top: 10px;
    }

    .term-advisory-board #content {
    width: 100%;
    }

    .term-advisory-board #sidebar {
    display: none;
    }

    .term-advisory-board .staff-member {
    width: 46%;
    margin: 2%;
    }

    #10607
    Bill Robbins
    Moderator

    Ed,

    Try clearing your browser’s cache. When I look at the site, they’re lining up in two columns for me. Here’s a quick screenshot:

    http://d.pr/i/m3kD

    #10615
    Edward Garrett
    Participant

    You are correct. Thank you, Bill…
    Ed

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to make the two columns on the Staff-Group pages wider’ is closed to new replies.