Skip to content

Welcome to the Slider Builder πŸŽ‰ ​

Now that you've created your Slider, let's walk through all the available options for Slider customization step by step. This guide will help you tailor your Slider to fit your website perfectly.

Slider Builder

Choose Type 🎨 ​

In this section, you can change the design of your Videobot Slider. Whether you're setting it up for the first time or testing new designs after installation, you can easily switch between options to see what works best for your site.

Choose Slider Type

Content ​

Videobots πŸŽ₯ ​

Here, you can choose which Videobots you want to display in your Slider. You have several options to control which Videobots appear:

  • All Videobots: This option will include all the Videobots in your account in the Slider.

All Videobots

  • Selected Videobots: This allows you to handpick specific Videobots from a list.

Selected Videobots

  • By Tags: You can select a tag, and all Videobots with that tag will be used in the Slider.

    (To tag Videobots, go to Videobot Builder β†’ Settings β†’ Slider Options.)

By tag

Sort By ​

Choose how you want to sort the Videobots within your Slider. This could be based on criteria such as most recent, alphabetical order, or custom order based on your preferences.

Sort Videobots

Widget Settings βš™οΈ ​

Slides Visible πŸ“±πŸ’» ​

Mobile/Tablet/Desktop: Choose how many Videobots to display in the Slider UI for different devices (mobile, tablet, or desktop). This allows you to control the number of visible slides based on screen size.

Slides Visible

  • Arrows: Enable arrow buttons that appear in the top right corner, allowing users to scroll through the Slider if there are more Videobots than visible in the UI.
  • Bullets: Enable round points at the bottom of the Slider, indicating if more Videobots are available to scroll through.

Navigation Options

Enable Infinite Carousel if you want users to continuously scroll through the Videobot Slider without reaching a stop. If disabled, the Slider will have a first and last Videobot, preventing users from scrolling backward from the first or forward from the last slide.

Infinite Carousel

Autoplay Preview πŸŽ₯ ​

Enable this option to show a video preview in the UI of the Slider. If disabled, the videos will remain still within the UI until interacted with.

Autoplay Preview

Enable Story Descriptions πŸ“ ​

For stories, enable this setting if you want a label to appear beneath each circle. You can edit the description in the Videobot Builder β†’ Settings β†’ Slider Options β†’ Story Description. If the custom description field is left empty but labels are activated in the slider settings, the name of the Videobot will be used by default.

Story Descriptions

Advanced ​

Screen Breakpoints πŸ“ ​

Mobile/Tablet/Desktop (px): Customize the breakpoints for mobile, tablet, and desktop layouts. This allows you to precisely adjust the responsive settings to match your website’s breakpoints or to suit your specific design preferences.

Screen Breakpoints

Border Radius πŸ”³ ​

Radius (px): Adjust the roundness of the corners for the Slider and Cards. Increase the radius for more rounded corners, or decrease for sharper edges.

Border Radius

Custom CSS ​

You can overwrite styles in the Videobot Slider by applying your own CSS customizations. Below are a few examples of common customizations. For more options or assistance, feel free to contact [email protected].

Changing the Slider's Roundness/Border Radius ​

To adjust the border radius of the slider, you can use the following CSS:

css
.widget-slider__card {
  border-top-left-radius: 10px;  /* Adjust size as needed */
  border-top-right-radius: 10px;  /* Adjust size as needed */
}

Changing Player’s Backdrop Color ​

To adjust the backdrop color of the player, you can use the following CSS:

css
.videobot-widget .widget-player__backdrop {
  background-color: white;
}