buddypress-group-email-subscription
buddypress-group-email-subscription copied to clipboard
Text overlaps on group images
Group Images are not showing up correctly when plugin is activated. How can I fix this?
Hello - What theme are you using? It appears that it's using some absolute positioning that conflicts with the positioning rules in BPGES.
I'm not sure whether there's anything that BPGES could change to prevent this. You'll likely have to write a bit of CSS that forces some space for the absolutely-positioned element in your theme. You could try something like this, which adjusts the positioning of the BPGES element:
.single-item .group-subscription-div {
padding-top: 80px;
}
But this might be better fixed by adjusting the positioning of the member avatars provided by your theme.
It's the buddyboss theme. Okay, I'll try that, thank you