Sufijo de Clase de Página
From Joomla! Documentation
Page Class Suffix is a parameter in Joomla! content Menu Items. It is set in the Menu Item: [Edit] screen under the "Parameters (Advanced)" section. This will cause Joomla! to either add a new CSS class or modify the existing CSS class for elements in this specific Menu Item layout.
Cuando Joomla! genera una página, automáticamente crea clases CSS predefinidas para permitir dar estilo a la página. Por ejemplo, una página puede tener el elemento
<div class="componentheading">
Para crear una clase nueva, introduzca el parámetro con un espacio en blanco delante. Por ejemplo, introduciendo un espacio y "miNuevaClase" creará una nueva clase CSS para elementos en ese elemento de menú. En este caso el ejemplo de arriba será cambiado a
<div class="componentheading miNuevaClase">
To change the name of the existing class, enter in the parameter without a leading space. For example, entering "_mySuffix" (no leading space) will cause the HTML to changed to
<div class="componentheading_mySuffix">
Generally, it is recommended to use a leading space to create a new class. This way, CSS styling for this component that uses the standard class names will continue to work. You can use the new class name to add any desired styling to the component without needing to re-create all of the existing CSS code. Note that, if you create a new class name, make sure it has a unique name and doesn't conflict with any existing class names.
See also: Using Class Suffixes, Using the Page Class Suffix in Template Code