== I remover the sidebar of these pages and would like to make the content area less cramped but not sure how to do this without editing the style sheet and changing the look of my entire site ==
Just to clarify, you mentioned that you deleted the sidebar from the template files of the profile pages, which template files did you edit?
Re editing stylesheet – you would need to add change in style for only those pages. Using firebug, you can ID the profile pages and use the body.class selector to expand width of content are for the pages you want to implement changes on.
trouble is there isn’t a useful distinct class token for profile pages , I went through some changes to the class array a while back with Paul, but this should have been better catered for at the moment there is only ‘my-account’ but nothing that distinguishes a general profile/account view.
You may need to add a class or id to /members/single/home.php on the highest element that exists in the structure which should be ‘content’
==Mercime: Just to clarify, you mentioned that you deleted the sidebar from the template files of the profile pages, which template files did you edit?==
* I took them out of the members/single/home.php.
==hnla: You may need to add a class or id to /members/single/home.php on the highest element that exists in the structure which should be ‘content’==
* Thank you for the suggestion, I will try this out tonight!
Thank you both for answering my post. I will let you know how it works out!
I’m sorry but upon trying to tackle this i realize how much of a noob I really am at all this. How would I go about adding a class or id? I looked around but only got confused. Any help would REALLY be great!
Try opening /members/single/home.php and to the element `
` add a class `
`
That should now allow you to add specific styles to any page within a set of member account/profile screens
`.member-account .padder {margin-right: 0;}`
N.B. this is for bp-default theme and you should really effect these changes in a child theme otherwise the changes will be lost on upgrade to BP
Thanks! I have a child page all set up and will try this bit out tomorrow! I really appreciate the guidance!
OK, so I’m sure I’m just a flippin moron but I can’t get this to work. Where am I supposed to put the style changes “.member-account .padder {margin-right: 0;}”? I tried adding it to my style.css but that did nothing. I then put it in my layout.css and still nothing. Sorry i’m THICK HEADED! Thank you for your patience and help.