Re: Buddypress Home 2 Column Theme
There are 2 things you need to change, 1 in custom.css, 1 in home.php in the buddypress-home theme folder (and /css folder)
remove lines 14 to 25 (or comment out) of home.php
`<div id=”center-column”>
<?php if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar(‘center-column’) ) : ?>
<div class=”widget-error”>
Please log in and /wp-admin/widgets.php?s=&show=&sidebar=sidebar-2″>add widgets to this column.
</div>
<?php endif; ?>
</div>`
This will remove the center column from the layout.
Next you need to adjust the css right margin of #left-column
#left-column {
margin-right: 280px;
}
Also you could adjust the body width, with this addition to your custom.css
body {
max-width: 1100px;
}
Hope That Helps,
Brad