• Resolved eliasalopez

    (@eliasalopez)


    Currently mobile users can only see the # of matches played, Goal differential and points on my league standings table. I only see options to edit the columns of a full view and widget, but not for a mobile version. I want to show w,d,l and points at least for mobile users. How can I edit this?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author anwppro

    (@anwppro)

    Hi,

    You can use custom CSS.
    https://anwppro.userecho.com/knowledge-bases/2/articles/1-how-to-add-custom-css

    
    .standing.standing--shortcode .standing-table__header-row .standing-table__cell.d-none:nth-child(4),
    .standing.standing--shortcode .standing-table__header-row .standing-table__cell.d-none:nth-child(5),
    .standing.standing--shortcode .standing-table__header-row .standing-table__cell.d-none:nth-child(6),
    .standing.standing--shortcode .standing-table__row .standing-table__cell.d-none:nth-child(10),
    .standing.standing--shortcode .standing-table__row .standing-table__cell.d-none:nth-child(11),
    .standing.standing--shortcode .standing-table__row .standing-table__cell.d-none:nth-child(12) {
        display: block !important;
    }
    
    Plugin Author anwppro

    (@anwppro)

    Looks like you applied these styles.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to edit visible standings table columns on mobile’ is closed to new replies.