• Resolved isaact1994

    (@isaact1994)


    Hello,

    First of all I want to say I appreciate all the help I’ve gotten using this plugin. However, I’m having a small issue with one of my instances of the [bpps_group_members] shortcode.

    It’s working fine for the most part, However one instance of the shortcode isn’t displaying my two column layout correctly. It is putting the name of the bottom left user at the top of the right column. As I said before, this is not happening to all of them, just one of them. Here is my shortcode and custom CSS. It’s a slightly tweaked version of the one you sent me prior.

    [bpps_group_members group_id="10" s_title="default"option="avatar-list" content_1_field="Extension" display_count="no"]

    #bpse-group-members {
    columns: 2;
    }
    #bpse-group-members li {
    display: grid;
    text-align: center;
    margin: auto;
    }

    Any CSS advice with this would be very much appreciated.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter isaact1994

    (@isaact1994)

    Update:

    To inform you, the group in question has three members.

    Plugin Author Venutius

    (@venutius)

    I did some exprimenting and I got your desied layout by using the following:

    .bpse-group-members {
        display: grid;
        grid-template-columns: auto auto;
    }

    give it a try.

    Plugin Author Venutius

    (@venutius)

    I’ve a new update coming which moves the group members list title into it’s own div with a class of bpse-group-members-title so you can style that seperately.

    Thread Starter isaact1994

    (@isaact1994)

    Thanks again Venutius!

    Once again you save the day!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Small issue with some of my members profile columns’ is closed to new replies.