Considering demo automation? Test drive Demoboost for free!
Start Your Trial
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
How to Build a Sandbox Demo
Managing Access to Demoboost Product: A guide for Admin Users
Knowledge Base Documentation
New Feature Explanations
Product Marketing Announcements
Website Conversions
Channel Partner & Reseller Demos
Conferences/Trade Shows
Digital sales rooms for customers
Sales Leave-Behinds
Live Demos
Using Variables in your demos
“Great Demo!” Training for Sales Teams
Sample Article
How to Replace images
How to Assign a Variable
How to Select or Create an Overlay
How to download the extension?
How to present Mailchimp to Tim Cook
How to Clear Your Browser Cache
How to Install Microsoft Clarity on Your Demos Using Google Tag Manager
Integrating Google Tag Manager with Demoboost: A Step-by-Step Guide
Scrolling Settings - Advanced
How to Translate Screens
Troubleshooting Saving Errors
How to Capture Local Web Pages
Advanced Guide Cutomisation
How to Embed Demos from Specific Screen
How to Share Demos From Specific Screen
How to Edit Elements Behind Overlays
Demo Building and Custom Requests
Comments in Demos
How to Export Data from Demoboost
Analytics Overview
Playback Settings
Live Demo Settings
Demo Email Notifications
How to Share Demos
How to Embed Demos on Your Website
How to Share With Presenters and Channel Partners
How to Duplicate Demos
How to Create Folders
Inspector Introduction
How to Remove Screen Elements
How to Blur Screen Elements
How to Edit Graphs
How to Change Images
How to Edit Textual Elements
Branding - Custom Theme
Branding - SSO Integration
Creating Mobile App Demos
Uploading Multimedia Screens (MP4, PDF, IMG)
How to Change Screen Order
How to Copy Screen to Another Demo
How to Duplicate Screen
How to Edit Screen Title
How to Add Speaker Notes
How to Add Video Narration
How to Add Guides and Styling
How to Link Screens
How to Capture Dynamic Dropdowns (Advanced)
Extension Settings
How to Capture Screens
How to Create Demos
How to Add Extension

Advanced Guide Cutomisation

  • This is an inspector guide, so be sure to refer to the 'Introduction to Inspector.
  • We're aware that we can customize the appearance of our guides using custom themes, as explained in the 'Adding a Narrative Guide.' However, it's worth noting that the guide text editor functions similarly to the main Demoboost editor. This means that any changes made in the Inspector will be saved and persist. Consequently, we can perform operations that are typically unavailable in the Guide text editor, such as modifying font colors, sizes, and adding images.

Effortlessly kickstart your journey with our beginner-friendly guides!

Step 1: Open up the demo in the Editor.

Step 2: Add a new guide or edit an existing one (refer to Adding narrative guide)

Step 3: Add your guide text using the editor. Once you're done, right-click inside it and click on Inspect.

Step 4: You'll see an HTML document structure, as you usually would when using the inspector. It works in the exact same way as in the Demoboost Editor, with some caveats:

-You cannot use JavaScript

-Only text or image HTML elements are allowed (you cannot use input fields, buttons etc.)

Step 5: To change the text color and size, follow these steps: select the text you wish to modify, and then add the corresponding CSS properties in the Styles panel.

-Colour can be changed with the color: [color]; property.

-Size can be changed with the font-size: [size]; property.

-For more information about tweaking text with CSS, visit the documentation. https://www.w3schools.com/css/css_text.asp

Step 6: To add an image or GIF, you'll need to host it somewhere first so that you have a direct link. There are many free image hosting services available, so you can choose your preferred one. Keep in mind that the image must be publicly available. Alternatively, you can convert your image to Base64 code using a tool like (https://www.base64-image.de/). This method eliminates the need to host the image, which is useful if you want to keep the image private.

Step 7: Once you have your direct link to the image (or its base64 code), right-click on the element that will be above your image in the inspector and choose Edit as HTML.

Step 8: Insert an <img>HTML element after the existing element's code:

<img src="YOUR-IMAGE-URL">

If the image is the first element in the guide, the Save button might be inactive, as the image is treated as an empty element. In such cases, insert an &nbsp; right before it:

&nbsp;<img src="YOUR-IMAGE-URL">

Refer to the element's documentation if you need more information. https://www.w3schools.com/tags/tag_img.asp

  • The image has been inserted. You can adjust its styling properties, like size, by selecting it in the Inspector and adding CSS rules in the Styles panel if it doesn't fit well in the guide.