Is there a page id for the buddypress profile page?
Check your page source to see if body classes are utilised by your theme. Then you can do:
body.classname #selector .etc {
// Stuff.
}
@mtgame21 We attempted to comprehensively provide classes on the body element to cover and catch as many conditions in BP so check those classes – as Henry points out – on the body element. The first you’ll possibly notice is ‘.bp-user’ to cover all instances of a users account screens. As an example if you’re looking at your profile screen you should see a series of body class tokens like this:
xprofile bp-user my-account my-profile profile public buddypress
With these classes we cover all important states, we inform we are on a Users series of screens ‘bp-user’, we state in this instance that it’s the logged in users account with ‘my-account’, we state the specific screen ‘profile’ and again we further specify that this is ‘my-profile’ the logged in user.
Check out further screens to see how these class tokens will change.