Archived topic
New Buddypress version
11 replies · Started by Uwe Pfeifer on November 11, 2015
Hi. Theres a new buddypress version out which features group/member cover image. can you somehow change it so the gray background isn't displayed if theres no image set? and also the now transparent coverimage-overlaying photo of users/groups overlaps the menuplus menu bar when scrolled down.
Hi there,
My main concern with GP and these major plugins is that everything is compatible and works.
In time, I may slowly start to change the style of these plugins, but currently I'm keeping this super plain and lightweight.
Can you link me to a page where this is an issue? If it's a glaring problem, I'll add a fix :)
http://www.unityhub.eu/groups/testgroup/ here you can see the wall cover is gray. it looks ugly and there just should be nothing if theres nothing set. not an ugly gray background. imo
This is most likely just default BuddyPress styling again - have you tried asking them for a solution?
no I didn't ask them. I will now, though. Thank you! :)
can you maybe fix the profile photo overlapping menuplus menu when scrolling down?
If you upload a cover image, this will fix this gray background issue. Maybe it's best to add a default cover image?
Try this for the navigation overlap:
.is_stuck {
z-index: 1000;
}
This for the cover background color:
#buddypress #header-cover-image {
background-color: transparent;
}
none of both helps.
// Overlapping Menu - picture still going over menu
.is_stuck {
z-index: 1000;
}
// Wall Background Color - still gray wall background.
#buddypress #header-cover-image {
background-color: transparent;
}
You're using comments like this in your CSS: // Closed forum text color
That will break all of the CSS below the comment.
Instead, use comments like this: /* Text.. */
oh sorry. Thank you very much it's working now. :)
You're welcome :)
