Welcome to XTruLink support

Knowledgebase

You may use custom CSS to customize your web portal to your preferences. Below are a few commonly-used examples you might find useful. All color codes and pixel sizes used are placeholders that may be replaced with your brand colors and specifications. 

Disclaimer: we do not offer support in building custom CSS for your web calendar or web portal.


(1) Import font and target entire body

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');

body{
    font-family: 'Roboto Condensed', sans-serif;
}

*Custom fonts may be found at https://fonts.google.com/ 


(2) Update alert bar color

#cart_msg{
    color: #152148;
    background-color: #fbc423;
    border-color: #fbc423;
}


(3) Hide "Gift a Membership" button 

.gift_membership_btn{
    display:none;
}


(4) Hide event ticket availability

.tickets_available_display{display:none;}


Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.