top of page

/ Articles  -  

Velo & Code

This is how to create a custom scrollbar in Wix Studio

October 6, 2024

Want to give your or your client’s website a unique touch? This simple scrollbar tweak can instantly elevate your design and create a more personalized feel.

Wix studio custom scrollbar guide

Detailed guide


  • Access your Wix Dashboard:

    Log into your Wix account and navigate to your site dashboard.

  • Open Settings: Click on Settings in the left menu.

  • Locate Advanced Settings: Scroll down to Advanced and select Custom Code.

  • Add Custom Code: Click the Add Custom Code button.

  • Paste the Code: Insert the provided code into the first textbox.

  • Apply to All Pages: Ensure the code is set to apply to all pages and is placed in the head section.


Adding custom code to Wix studio




<style>


/* To customize the scrollbar */


::-webkit-scrollbar {

    width: 12px; /* Standard width for the scrollbar */

}


::-webkit-scrollbar-track {

    background: #1B1C1D; /* Dark gray background for the scrollbar track */

}


::-webkit-scrollbar-thumb {

    background-color: #C2C2C2; /* Gray color for the scrollbar */

    border-radius: 6px; /* Rounded corners for the scrollbar */

}


::-webkit-scrollbar-thumb:hover {

    background-color: #FF4D02; /* Orange color on hover to provide visual feedback */

}


/* Reset scrollbar to default appearance when less than 750px */


@media (max-width: 750px) {

    ::-webkit-scrollbar {

        width: auto; /* Standard width for the scrollbar */

    }


    ::-webkit-scrollbar-track {

        background: none; /* No background for the scrollbar track */

    }


    ::-webkit-scrollbar-thumb {

        background-color: transparent; /* No color for the scrollbar */

    }

}


</style>


The code used is the one used on this website. If you want to change it, paste it into Chat GPT and describe what you want.


If you have any further question, you can alway write me a message.

Illustration of multiple windows

Why people don’t read your content (what they do instead)

Why people don’t read your content (what they do instead)

Web & UX Design

Linkedin company page screenshot

5 things I've learned from working with linkedin marketing

5 things I've learned from working with linkedin marketing

Marketing

2 professional website hero sections

Why your website feels cheap (even if it wasn’t)

Why your website feels cheap (even if it wasn’t)

Web & UX Design

Afobe & Semrush puzzle pieces

Adobe buying Semrush: SEO future

Adobe buying Semrush: SEO future

Tech news

Phone mockup for Hampuddesign

Why most small businesses fail at marketing

Why most small businesses fail at marketing

Marketing

Arc and Doa bought by Atlassian

Atlassian buying The browser company: Arc sold

Atlassian buying The browser company: Arc sold

Tech news

You might

also like

Explore my work

Web Design

Karlsson Bil is a car dealership based in Varberg, specializing in buying, selling, and restoring vehicles, including the exclusive Lignon Scandinavia line of handcrafted Land Rover Defenders. I worked on designing a website that blends the heritage of the classic Defender with a modern, sleek aesthetic. The focus was on creating a smooth, intuitive browsing experience, making it easy for users to explore the inventory, learn about bespoke restorations, and navigate the buying and selling process with confidence.

Karlsson bil

Karlsson Bil is a car dealership based in Varberg, specializing in buying, selling, and restoring vehicles, including the exclusive Lignon Scandinavia line of handcrafted Land Rover Defenders. I worked on designing a website that blends the heritage of the classic Defender with a modern, sleek aesthetic. The focus was on creating a smooth, intuitive browsing experience, making it easy for users to explore the inventory, learn about bespoke restorations, and navigate the buying and selling process with confidence.

Tools used

Wix Studio & Custom code

Web Design & Branding

Carin Fredén is a Malmö-based photographer and photo editor specializing in high-quality business photography and visual branding. Her website showcases her work and services, helping businesses enhance their visual identity through images.

Carin Fredén

Carin Fredén is a Malmö-based photographer and photo editor specializing in high-quality business photography and visual branding. Her website showcases her work and services, helping businesses enhance their visual identity through images.

Tools used

Wix Studio, Figma & code

Web Design

Tek-ture is a cutting-edge architectural firm with a focus on modern and sustainable design. For this project, I recreated their website from scratch, ensuring it maintained the original futuristic feel and functionality.

Tek-ture

Tek-ture is a cutting-edge architectural firm with a focus on modern and sustainable design. For this project, I recreated their website from scratch, ensuring it maintained the original futuristic feel and functionality.

Tools used

Wix Studio

UX & User testing

Asekio is a Skåne-based tech startup with a vision to create a no-code AI website builder that can generate fully customizable websites in just 29 seconds. Users  input prompts, and Asekio handles the layout, text, and images. 

Asekio

Asekio is a Skåne-based tech startup with a vision to create a no-code AI website builder that can generate fully customizable websites in just 29 seconds. Users  input prompts, and Asekio handles the layout, text, and images. 

Tools used

Figma, Figjam & Asekio

bottom of page