i think it’s a css issue, I ran into the same problem, post a link and i can double check for ya.
Hey Anthony,
I’m running on a localhost set-up so I can’t send you a link unfortunately. How did you fix your issue? What file did you edit? I’m running WordPress TwentyFourteen theme, if that gives you anymore info.
But I’m getting my domain name on the first of April. If you can’t talk me through it here, maybe you could still check it out?
Thanks for your help man!!
Hey,
I kinda fixed this, at least for the profile, but I still need some help. I checked >plugins>bp-cover>css>bp-cover-profile.css and I found this code:
.image-upload-buttons {
right: 2px;
bottom: 2px;
position: absolute;
display: none;
}
After playing around with it, I got this to work:
.image-upload-buttons {
right: 4px;
bottom: 4px;
position: relative;
top: -135px;
display: inherit;
}
However, it only works because I must have the cover upload buttons right on top of the profile pic box so that the profile pic upload button remains in the profile pic box.
Otherwise, if I moved the cover upload buttons to the top left corner of the cover page (like I ideally want), the profile pic upload button jumps to the top as well (a little below the cover upload buttons).
This can easily confuse a user as to what pic they are changing because both the profile pic and cover pic upload buttons are in the cover page. It confused myself honestly. It seems the upload buttons are tied together in the .css file. Is there a way to separate them? Like:
.image-cover-upload-button
.image-profile-upload-button
I tried to write these in the .css to no avail. How can I make those function? Is it possible?
And I still can’t figure out the group covers. The group .css didn’t even have an upload button tag and putting the profile code in the group file had no affect, so I don’t know. I also put the profile code in the bp-cover.css file (it had the same upload code as the profile page) and it had no affect on anything either so the bp-profile.css was the only file that made changes.
Do you have any suggestions? Thanks again!
As far as the Group profile, to make the upload info appear, use the following code.
figure.entypo-forward {padding-left:30px!important;}
figcaption nav h2 {position:relative!important; left:-570px!important;}
ul.gallery-cover {position:relative!important; left:-570px!important;}
ul.upload-cover {position:relative!important; left:-565px!important;}
it worked for me, this is a temp fix till the author of the plugin fixes this. This can be simply done by adding the buttons in the center of the group background covers.
Hey Anthony,
Thanks a lot. This didn’t fix it exactly for me but led me down the right path. I was able to tweak it until I found what worked for me. Thanks again!!