CSS Customization Examples

Modified on Wed, 8 Mar, 2023 at 2:41 PM

It is possible to edit the look of the customer accessed pages by adding custom CSS code under Menu -> Settings -> Customer Pages CSS Styling. There are a lot of possibilities but here are a few examples you can add:


Hide the logo in the navigation bar

#logoSmall, #logoLarge {
  display: none;
}

Hide the navigation bar

#topNav {
  display: none;
}

Hide the footer

#bottomNav {
  display: none;
}


Change the default font to Times New Roman

body {
 font-family: "Times New Roman", Times, serif;
}


Change the color of the white default buttons

.btn-default {
  color: white;
  background-color: black;
}

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons

Feedback sent

We appreciate your effort and will try to fix the article