sidebar issues
-
Hi, I have 2 issues with the sidebar.
First one is on the normal pages, as you can see, it isn’t floating on the right anymore. I’ve had a look around the CSS and php but can’t figure out where the problem is.
adauk.orgThe second issue is on the BP members pages. The member header is taking space above the sidebar but as you can see, it leaves an empty space. i was wondering how I could get rid of it so the sidebar comes up?
http://adauk.org/members/faker/Could anyone help out?
Many thanks
-
I solved half of the issue.
i had set up the css with margin-right:auto and same for margin left. Once I took it out it was back to normal.
However still would like to get rid of the empty space above sidebar in the profile sections.still would like to get rid of the empty space above sidebar in the profile sections.
@caspergrimaldi That’s the default layout of Frisco theme for Member and Group pages. You can use negative margin for the member sidebar in your custom.css filebody.bp-user #sidebar {
margin-top: -100px;
}Adjust negative margin to taste. You’d have to change margin-top for the same in media query section
media query section? Not familiar with this sorry.
Add this to the bottom of your custom.css
/* Mobile */
@media only screen and (max-width: 767px) {
body.bp-user #sidebar {
margin-top: 0;
}
}It didn’t work. Nothing happened :S
@caspergrimaldi It won’t work if you don’t add it to a stylesheet. Where did you add the style I posted above? I don’t see it in the theme’s stylesheet nor did you create a custom.css file per instruction of theme dev to add style changes.
Nope, I didn’t create a custom stylesheet. I’ve been modifying the style.css one and have save copies of it regularly as well as keeping a copy of he original one.
I put the code in the style.css, however because it didn’t work I erased it, hence you not seeing it.
- The topic ‘sidebar issues’ is closed to new replies.