== I think i have the activity in between the sidebars and looking OK. ==
Confirming that it’s looking good
== I just have the admin bar width issue to figure out ==
The adminbar in that permalink page is styled like so in bp-default adminbar.css
body#bp-default.activity-permalink #wp-admin-bar .padder {
min-width: 960px;
max-width: 960px;
}
I see you have a fixed width of 1000px for your site. So if you have custom.css listed after the @import of adminbar.css, just add this
body#bp-default.activity-permalink #wp-admin-bar .padder {
min-width: 1000px;
max-width: 1000px;
}
but if you use stylesheet listed before @import of adminbar.css, you’d have to add !important to your min-width and max-width
You should also correct the width of the site when in permalink view
body.activity-permalink {
min-width: 960px;
max-width: 960px;
}
change to 1000px