Okay
  Public Ticket #2892377
Milestones Not Centering on Mobile
Closed

Comments

  •  14
    Jerfalco started the conversation

    Hi, i cant seem to get the milestone to center on mobile. I choose "center content" on all rows. They still remain left justified. Any help appreciated. 

    -jeremy

  •  2,960
    Andrew replied

    Hi Jeremy,

    Try the following CSS.

    @media only screen and (min-width: 1px) and (max-width: 999px){
        .nectar-milestone {
            text-align: center !important;
        }
        .centered-text.no-extra-padding.inherit_tablet.inherit_phone h5,
        .centered-text.no-extra-padding.inherit_tablet.inherit_phone h2 {
            text-align: center !important;
        }
    }
    

    Regards,

  •  14
    Jerfalco replied

    This worked, thanks !!