Customize your scheduling page: Difference between revisions

No edit summary
No edit summary
 
(31 intermediate revisions by the same user not shown)
Line 1: Line 1:
__FORCETOC__
<p>
<p>
Scheduling pages allow your invitees to book the meetings with you. Out of the box, organization and personal scheduling pages have a sleek and clean look with some customization built right into Appearance settings that can be customized without changing the code and our default CSS.&nbsp;If you want to customize your scheduling page further and match your brand seamlessly, put your team's CSS skills to work and create your own stylesheet
Scheduling pages allow your invitees to book the meetings with you.  
SimplyMeet.me offers two ways to customize their appearance:
* '''Branding''' – a user-friendly editor that lets you customize colors, images, branding, and other visual elements without writing any code.<br>
* '''Custom CSS''' (Professional plan only) – for advanced customization such as changing fonts, spacing, layouts, hiding elements, and overriding the default styling.
<br>
</p>
</p>
<h2>Personal vs. Organization Branding</h2>
<p>
<p>
This article covers all of the customization options scheduling page offers.
With Branding settings, you can customize:
* Colors
* Avatar
* Company logo
* Banner image
* Welcome message
* SimplyMeet.me branding (paid plans)
SimplyMeet.me lets you customize Personal and Organization scheduling pages independently.
<p>
</p>
<p>
<h3>Personal Scheduling Page Branding</h3>
 
</p>
Changes apply only to your Personal scheduling page.
<p>
1. Go to the [https://secure.simplymeet.me/panel/appearance '''Branding'''] page.
</p>
<p>
2. Select the '''Personal account''' tab.
</p>
<p>
3. Customize the colors, images, branding, and other available settings.
</p>
<p>
4. Click '''Save'''.
</p>
<p>
[[File:SM Branding Personal page.png|1200px|center|link=https://help.simplymeet.me/index.php?title=File:SM_Branding_Personal_page.png]]
</p>
<p>
<h3>Organization Scheduling Page Branding</h3>
</p>
Changes apply to your organization scheduling page.
<p>
1. Go to the [https://secure.simplymeet.me/panel/appearance '''Branding'''] page.
</p>
<p>
2. Select the '''Organization account''' tab.
</p>
</p>
<h2>Appearance editor</h2>
<p>
<p>
1. Go to the [https://app.simplymeet.me/appearance Appearance] page.
3. Make the necessary changes.  
</p>
</p>
<p>
<p>
2. The user-friendly editor will open where you can change the colours of the personal scheduling page,&nbsp;no custom coding necessary.
4. Click '''Save'''.
</p>
</p>
<p>
<p>
[[File:Simplymeet appearance settings.png|1200px|center]]
[[File:SM Branding Organization page.png|1200px|center|link=https://help.simplymeet.me/index.php?title=File:SM_Branding_Organization_page.png]]
</p>
</p>
<h2><br>
<h2><br>
  Personal-level vs. Organization-level CSS (paid plan only)
  Custom CSS (Professional plan only)
</h2>
</h2>
<p>
<p>
Organization-level CSS will be loaded when you open&nbsp;any&nbsp;teammates scheduling link in your organization or the organization scheduling page.
Custom CSS allows you to customize almost every visual element of your booking page, including:
</p>
</p>
* fonts
* spacing
* borders
* layouts
* buttons
* hidden elements
* colors
* advanced branding
<br>
<p>
<p>
<span style="font-weight: normal;">Personal-specific CSS gets loaded only on the personal scheduling page.</span>
To add Custom CSS:
</p>
</p>
<h3> Use custom CSS (Cascading Style Sheets)</h3>
<!-- (To apply custom CSS to a widget use: ".widget-theme" in your css code) -->
<p>
<p>
Add your own CSS by directly adding the stylesheets in the settings. You can customize just about everything on your scheduling pages with do-it-yourself custom CSS (e.g. change the font format, size, override defaults colours etc.)!
1. Go to '''[https://secure.simplymeet.me/panel/appearance Branding]''' page.
</p>
</p>
<h4> Personal scheduling page-specific custom CSS</h4>
<p>
<p>
1. Go to
2. Select either '''Personal account''' or '''Organization account''' tab.
[https://app.simplymeet.me/profile/edit Account Settings.]
</p>
</p>
<p>
<p>
2. Head to the&nbsp;<strong>Custom CSS</strong> section to get started.
3. Scroll the page to <strong>Custom CSS</strong>.
</p>
</p>
<p>
<p>
[[File:Simplymeet account css path.png|1200px|center]]
4. Paste your CSS.
</p>
</p>
<p>
<p>
&nbsp;3.&nbsp;Just add your CSS using the&nbsp;
4. Save.
<strong>Custom CSS</strong>&nbsp;field. This CSS will automatically apply to your personal scheduling page.
</p>
</p>
<h4>Organization scheduling page-specific custom CSS</h4>
<p>
<p>
1. Go to [https://app.simplymeet.me/organization/settings Organization settings.]
[[File:SM Branding CSS.png|1200px|center|link=https://help.simplymeet.me/index.php?title=File:SM_Branding_CSS.png]]
</p>
</p>
<br>
<p>'''Personal CSS'''</p>
Personal CSS affects only your personal scheduling page.
<p>'''Organization CSS'''</p>
Organization CSS applies to organization booking pages and organization meeting types.
  '''Tip''': To style embedded widgets, use the .widget-theme selector in your CSS.
<h2><br>
Changing Fonts with Custom CSS
</h2>
One of the most common Custom CSS customizations is changing the font used on your scheduling page.
<p>
<p>
2. Head to the Custom CSS&nbsp;section to get started.
'''Option 1 — Google Fonts (Recommended)'''
</p>
</p>
We recommend using '''Google Fonts''', most fonts are free to use, including commercially.
Browse available fonts [https://fonts.google.com/ here].
<!--
<p>Example:</p>
  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
  * {
  font-family: 'Oswald', sans-serif !important;
  }
<p>Save the CSS and refresh your booking page.</p>
-->
<p>'''Option 2 — Your own hosted font'''</p>
If your company has its own licensed font, you can reference it from your own hosting.
<!--
<p>Example:</p>
  @font-face {
    font-family: 'MyCompanyFont';
    src: url('https://your-domain.com/fonts/MyCompanyFont.woff2') format('woff2');
  }
  * {
    font-family: 'MyCompanyFont', sans-serif !important;
  }
-->
<br>
<br>
<p>'''Important'''</p>
If you use fonts '''other than Google Fonts''':
<p>
* you are responsible for obtaining the appropriate font license;</p>
<p>
<p>
[[File:Simplymeet organization css path.png|1200px|center]]
* you must host the font files yourself;</p>
</p>
<p>
<p>
&nbsp;3.&nbsp;Just add your CSS using the&nbsp;Custom CSS&nbsp;field. This CSS will automatically apply to your organization&nbsp;scheduling page.
* SimplyBook.me / SimplyMeet.me does not provide or host font files.</p>
</p>
<p>Support can assist with simple CSS syntax and applying Google Fonts, but cannot '''source, upload, or host''' non-Google font files.</p>