Hello @delanataylor
You can override ultimate-member/templates/profile/posts-single.php template file from your theme. Please check this article regarding template overriding.
If you just want to display posts in grid, please add the following CSS codes to wp-admin > appearance > customize > Additional CSS
.um-profile-body.posts .um-ajax-items {
display: grid;
grid-template-columns: repeat(3,1fr);
grid-gap: 15px;
}
Awesome…that did the trick. Thanks!
One last one. I’ve spent the last hour going through every single css file in this plugin so since you’re up I’m just going to ask because I cannot find it.
Where do I find the css for the tool tip box that pops up. It’s dark brown with tiny white letters. I need to change that so it’s easier to read.
Thanks!