• Hello,

    My default profil form tab is running well for desktop users showing both icon and text (title) but when the user become responsive (tablet or mobile) the tab is just showing icons.

    It’s ok for mobile user, but for tablet, it still plenty of room to keep showing title and icons.

    Is there any way to keep the tab running as desktop when is tablet ?

    Thank you very much !

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Aswin Giri

    (@aswingiri)

    Hello @swanzack

    Profile menu tab texts are hidden for the screen below 1000px, if you want to display them for tablets, you can write some custom CSS and override the styling.

    Please tru following CSS codes, you can add these to wp-admin > appearance > customize > additional css

    @media(min-width:800px) and (max-width: 1000px){
    
     .um-profile-nav .um-profile-nav-item a.uimob800-hide {
      display:block;
     }
    	
     .um-profile-nav .um-profile-nav-item a.uimob800-show {
    		display:none;
     }
    }

    Regards,

    Thread Starter Le Renard Pourpre

    (@swanzack)

    thanks !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Default Profile form and responsive’ is closed to new replies.