• Resolved idougal

    (@idougal)


    One of my reviewers noticed that the my pprofile tab looks weird on a phone.

    When inspecting:

    .pm-group-view.pg-theme-six .pm-profile-tabs .pm-section-nav-horizental {

    1. width: calc(100% –?210px);

    What’s the best way to get rid of the -210px when on a smaller screen?

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

    (@profilegrid0)

    In order to fix this issue, please use this CSS in your child theme or Additional CSS section in theme customization:

    @media only screen and (max-width: 600px) {

    .pm-group-view.pg-theme-six .pm-profile-tabs .pm-section-nav-horizental {

         width: 100% !important;

       }

    }

    Thread Starter idougal

    (@idougal)

    That worked.

    Thanks,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘My Profile Tabs shoved to the side on phone’ is closed to new replies.