We have used this code to try to align the responsive version to display in the center as the desktop display fine. However, nothing seems to center and we have tried various ways of centering it.
‘.bp-user-badges-badge-list img {
width: 200px !important;
height: 75px !important;
justify-content: center;
}’Hi Anthony,
Please use this css.bp-user-badges-badge-list{ justify-content: center; }
That should do it.
Regards
BrajeshHi Anthony,
Thank you for the confirmation.I am glad it is resolved.
Regards
BrajeshQuestion: Can this be edited for mobile devices only? This centered it on desktop as well. I would only like it centered on phones.
Hi Anthony,
Sure. we can use media query to do that. Here is the updated css.@media screen and (max-width: 720px ) { .bp-user-badges-badge-list{ justify-content: center; } }
Please feel free to adjust the max-width.
Regards
Brajesh
You must be logged in to reply to this topic.