Styling Elements with CSS

Note: This feature is only available to Wix Studio users.

CSS allows you to customize the appearance of your website, from colors and fonts to sizes and positions of different elements. For additional information on CSS styling options, refer to the MDN CSS reference docs.

Add CSS to your site

To get started, add a global.css file in the CSS section of your Page Code. CSS styles added to this file will apply to the selected classes throughout your site. To select a class to style, use the name of the component as it's referred to in Velo.

For example, to change the background color of all buttons to red:

Copy
1

Use inner classes to style specific elements of a component class. For example, use .button__label to style only the labels of button elements.

Available classes

See which classes are already available for any element on your site by selecting the element and viewing CSS Classes in your code panel:

CSS Classes in code panel

Or add your own classes in the custom classes field. For more information, see CustomClasslist.

For reference, here is a list of global classes:

The following classes can be customized but don't have an associated $w API:

Image button classes

.image-button

Targets image button elements. For example:

Copy
1

Language menu classes

.language-menu

Targets language menu elements. For example:

Copy
1

.language-menu__option

Targets language menu option elements. For example:

Copy
1

Lightbox classes

.lightbox

Targets lightbox elements. For example:

Copy
1

.lightbox__close-button

Targets lightbox close buttons. For example:

Copy
1

Line classes

.horizontal-line

Targets horizontal line elements. For example:

Copy
1

.vertical-line

Targets vertical line elements. For example:

Copy
1

Search bar classes

Targets search bar elements. For example:

Copy
1

.search-bar__icon

Targets search bar icons. For example:

Copy
1

.search-bar__input

Targets search bar input boxes. For example:

Copy
1
Was this helpful?
Yes
No