Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

Code Block
#welcomeText p.description {
	text-align: center;
	font-size: 10pt;
	margin-bottom: 0px;
}

...