How can I control the layout of the Staff Group page?

Support Area Forums Bottega How can I control the layout of the Staff Group page?

Viewing 4 posts - 1 through 4 (of 4 total)
URL to the page in question: http://powerexplosion.entchev.com/staff-group/our-staff/
  • Author
    Posts
  • #30181
    atanas entchev
    Participant

    Unlike a regular page, for which I can select from a number of layout templates, the staff group (dynamically-generated) page does not have (obvious) layout controls. How can I change the layout? Specifically, how can I remove the sidebar?

    #30187
    Bill Robbins
    Moderator

    You can set the staff groups so they don’t have a sidebar. Here’s how:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      .tax-staff-group #content {
      	width: 100%;
      	float: none;
      	-moz-box-sizing: border-box; 
      	-webkit-box-sizing: border-box; 
      	box-sizing: border-box; 
      }
      
      .tax-staff-group #sidebar {
      	display: none;
      }
      
    3. Update your settings.

    If you run into any questions or trouble, let me know.

    Take care,
    Bill

    #30224
    atanas entchev
    Participant

    Bill:

    Thank you sooo much! This worked perfectly!

    #30241
    Bill Robbins
    Moderator

    I’m glad that did the trick. Have a great weekend and let me know if you need anything else.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How can I control the layout of the Staff Group page?’ is closed to new replies.