My account menu font size

Hi,

how can i change the font size of the my account navi menu? I already tried this

.woocommerce-MyAccount-navigation-link a {
padding: 10px 10px;
font-size: 16px !important;
}

Any ideas?

Hey @nikolaus.kemetner,

That code should work.

Please ensure you don’t have syntax errors in your CSS as that could cause issues. Check your CSS at http://csslint.net/

Thanks.

well I have some warnings :open_mouth: I also don´t get the error, it´s the last line and just a closing bracket.

Glad that it works now.

well it still doesn´t work haha :sweat_smile:

Hello @nikolaus.kemetner,

Thanks for updating the thread.

Please share login details in secure note, let me check account page.

Thanks.

Ok I did! You can check it now

Hi,

Upon checking, I can see you forgot to close one of your @media code preventing all codes below it from working.

Add a closing bracket and it should fix the issue.

eg.

@media(max-width: 799px) {
  .woocommerce .preis {
    background-color: #ea5242;
  }
  .woocommerce .preisna {
    background-color: #3d4c95;
  }
}
  .variation_modified del {
text-decoration-color: #000;
}
  
form.cp-form.smile-optin-form {
    margin-bottom: 0;
}

.cp-count-down .cp-form-seperator {
    padding-bottom: 0;
}
  
.woocommerce-MyAccount-navigation-link li a {
    padding: 10px 10px; 
    font-size: 16px !important; 
}

Hope that helps

Thx it worked! :slight_smile:

Glad to hear it’s sorted. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.