oxy_capitalize() Function

This function capitalizes the first letter of the text received as argument.

oxy_capitalize( text )

text
The text in which the first letter will be capitalized.

To insert as static text content before each element its capitalized qualified name, use this CSS selector:

*:before{
  content: oxy_capitalize(oxy_name()) ": ";
}

Was this helpful?