While TimeTap allows users with CSS expertise to upload their own custom style sheets for advanced scheduler customization, please note that our support team cannot assist with creating or editing CSS files.
This help doc covers:
Adding CSS for all booking sites
If you're on a Professional or Business account, you can upload your own custom style sheet (CSS) to your scheduler by going to Settings > Mini Website Design > Text Info & Scheduler and adding it to the Scheduler Style Sheet field:
You will first need to convert the .css file to a HTTPS link in order to apply it to your account. To convert the file within your TimeTap account, you’ll need to go to Messaging > File Library and click the “+ Add File / Folder” button:
From here you’ll just need to click the link button seen to the right of the file, which you can then paste into the Scheduler Style Sheet field under the Text Info & Scheduler section.
Adding CSS for a specific custom booking site
Here is an example of a CSS property you can apply to one of your custom booking sites. This piece of CSS would cause the text of the Welcome Text section seen on the scheduler of the booking site to be centered instead of left-aligned, and would make the text slightly smaller.
#welcomeText p {
text-align: center;
font-size: 10pt;
margin-bottom: 0px;
}