Search.../

Hamburger Open Button CSS Classes

This feature is only available to Wix Studio users.

You can use the classes listed below to style your HamburgerOpen elements with CSS.

For more information on styling your elements with CSS, see Styling Elements with CSS and the MDN CSS reference docs.

Important: Element structure and undocumented class names may change without advance warning. To avoid unintended style changes to your site, select elements with the documented class names only.

.hamburger-open-button

Targets hamburgerOpenButton element. For example:

.hamburger-open-button {
width: 90%;
cursor: default;
background-color: #116dff;
}
css | Copy Code

.hamburger-open-button__label

Targets hamburgerOpenButton label text. For example:

.hamburger-open-button__label {
font-family: sans-serif;
font-weight: 700;
text-transform: lowercase;
color: black;
}
css | Copy Code

.hamburger-open-button__icon

Targets hamburgerOpenButton icon images. For example:

.hamburger-open-button__icon {
width: 20px;
height: 40px;
border-radius: 20%;
box-shadow: 5px 5px 5px;
}
css | Copy Code

Was this helpful?