Re: Admin Bar different in Member section when not logged in
I had this problem too when i attempted to adjust the buddypress-member theme. http://sportsblognet.com/members/rich
It’s caused by the base.css in the the buddypress-member theme calling
input, select, textarea {
width: 100%
}
you can either adjust that in the base.css (not recommended)
or you can place
#wp-admin-bar input {
width: auto;
}
below the previous call in the base.css, that way it will call the 100% width for other inputs, except for the wp-admin-bar.