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

Inspector Introduction

Effortlessly kickstart your journey with our beginner-friendly guides!

  • The screens captured by Demoboost consist of HTML code. Our editor functions by saving the current HTML code of the captured screen
  • We can manipulate the HTML code using the Inspector tool, and the changes will persist on the screen after saving. This enables us to make nearly any customization we can think of, provided we have the necessary skills in HTML, CSS
  • The inspector is a very advanced tool, and this guide will only scratch the surface. For more in-depth information, visit the official documentation:

https://developer.chrome.com/docs/devtools/dom/

Step 1: Open up the demo in the editor

Step 2: Right-click on the element you'd like to customize and click on Inspect

Step 3: The inspector window will show up

  • The large panel on the left-hand side is the DOM Explorer, which provides a view of all the HTML elements comprising the current web page
  • The panel on the left is the Styles panel. It allows us to manipulate the styles of the currently selected element in the DOM explorer.

Step 4: Each HTML node can be expanded to view its children element

Step 5: For example, let's use the Styles panel to change the selected text's color to red. This can be done using the color CSS property.

Step 6: You can also perform other operations on elements, such as duplicating them - right-click the element to gain access to such options.

Step 7: You can even add new HTML elements by right-clicking an element and choosing the Edit as HTML option. This will allow you to append HTML code to the edited element, creating a new one. For example, you can add a text input field.