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:

Kopieren Sie

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:

Kopieren Sie

Language menu classes

.language-menu

Targets language menu elements. For example:

Kopieren Sie

.language-menu__option

Targets language menu option elements. For example:

Kopieren Sie

Lightbox classes

.lightbox

Targets lightbox elements. For example:

Kopieren Sie

.lightbox__close-button

Targets lightbox close buttons. For example:

Kopieren Sie

Line classes

.horizontal-line

Targets horizontal line elements. For example:

Kopieren Sie

.vertical-line

Targets vertical line elements. For example:

Kopieren Sie

Search bar classes

Targets search bar elements. For example:

Kopieren Sie

.search-bar__icon

Targets search bar icons. For example:

Kopieren Sie

.search-bar__input

Targets search bar input boxes. For example:

Kopieren Sie
Was this helpful?
Yes
No