• On the Ultimate Member Profile Page, I’d like to display user posts in columns or a grid, but cannot find how to edit that within the plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • you could probably do this with css. probably needs some tweaking but something like:

    .um-profile-body .um-item {
    float: left;
    width: 45%;
    margin: 0 5% 30px 0;
    }

    .um-profile-body .um-item:nth-child(2n) {
    margin-right: none;
    }

    .um-profile-body .um-item:nth-child(2n+1) {
    clear: left;
    }

    Thread Starter shaunnestor

    (@shaunnestor)

    THANK YOU! @shagdirty!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Grid or Columns of User Posts’ is closed to new replies.