Default Banner Photo
Hey, does anybody know how to set default banner photo on about me profile? So that it is not gray but something else by default when user creates an account on FluentCommunity?
I think this CSS would work. Make sure to add !important to override the default CSS. Obviously replace the URL with the one for your desired default image.
.object_header .object_cover.no_cover {
background-image: url(https://somedomain.com/someimage.png) !important;
}
Thomas OatesΒ Amazing, thank you SO much!!! :))