Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

You have to click on the "Save & Apply" button to save your entered code.

Examples for Custom CSS Code (River theme)

...

Code Block
languagecss
titleChange Navigation Button Colors
linenumberstrue
//* button background color */
.xc_next-button-wrapper {
    background-color: green;
}

//* button text color */
.xc_next-button-wrapper:before {
    color: white;
}

...

Code Block
languagecss
titleChange Stage Name Font Size
linenumberstrue
//* mobile */
.xc_header-navigation--stage-title {
	font-size: 22px;
}

//* desktop */
@media only screen and (min-width: 841px) .xc_header-navigation--stage-title {
	font-size: 30px;
}

...