[Resolved] Is my table design theme related?

Home Forums Support [Resolved] Is my table design theme related?

Home Forums Support Is my table design theme related?

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #979363
    Carsten

    H there, I have a table of user information, x-profile fields, in a number of rows, in two columns.

    View post on imgur.com

    I would like to gather the two rows, td.label and td.data into one column.

    I got this answer from a developer, which is why I contact you.

    The display is controlled by the theme. You will need to edit theme templates(or BuddyPress template pack templates) to achieve it.
    My suggestion will be to contact the theme author as ask on how to modify the profile field loop

    Is this theme related, or should I look into BuddyPress to achieve it?

    Thanks in advance

    Carsten

    #979366
    Leo
    Staff
    Customer Support

    Hi there,

    Your site requires a password to view. Any chance you can unlock it or provide the password?

    Let me know 🙂

    #979379
    Carsten

    sure

    front pass: dev

    user: generatepress
    pass: generatepress

    #979436
    Leo
    Staff
    Customer Support

    Where can I see the table in your site?

    #980163
    Carsten

    Hi Leo, take a look at the generatepress profile information now to se the table, especially group5 with the profile text I would like to see in one column.

    Regards
    Carsten

    #980173
    David
    Staff
    Customer Support

    Hi there,

    its how BuddyPress lays out the HTML for the tables. Should really direct the question to them to see if there is a way of changing this.

    If not then this CSS could do the trick:

    #buddypress table.profile-fields tr {
        display: flex;
        flex-wrap: wrap;
    }
    
    #buddypress table.profile-fields tr > td {
        flex: 1 0 100%;
    }
    #980197
    Carsten

    Hi David, thanks a lot for sharing this code, even it’s a BP matter.
    As I wrote in my first post, a developer suggested that it could be theme related, which I then wanted to role out first.

    Thanks again, you have been most helpful

    Regards
    Carste

    #980218
    David
    Staff
    Customer Support

    You’re welcome – glad we could be of help.

    #980220
    Carsten

    The code works very well, thanks again!

    #980221
    David
    Staff
    Customer Support

    Awesome – glad to hear that.

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.