Re: Extend the page tabs width?
Why the new thread?
Anyway:
1. Make a new folder inside “themes”. Call it whatever you wish
2. Make a new “style.css” file inside your new theme folder
3. Paste this code into your “style.css” file and then activate your new child theme
/*
Theme Name: My Theme
Description: My BuddyPress Child The,e
Template: bp-default
Tags: buddypress
*/
/* Parent styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/style.css );
/* Custom styles */
ul#nav {max-width: 100%;}
Bear in mind that IE 6 doesn’t understand max-width… only width. Then again, the BP default theme is no IE 6 friendly anyway (although it wouldn’t take much to make it so).