Is it possible to alter/add style property CSS for an addon using the xml file? For example
This is located in xenforo.css. If I wanted to add height to it, how would I go about doing that. Also if it already has height, how would I get the code to alter what they already have?
I know the easy route would be the following, just seeing if there is a way to still use style property.
Code:
.titleBar h1
{
@property "h1";
font-size: 18pt;
overflow: hidden;
zoom: 1;
@property "/h1";
}
This is located in xenforo.css. If I wanted to add height to it, how would I go about doing that. Also if it already has height, how would I get the code to alter what they already have?
I know the easy route would be the following, just seeing if there is a way to still use style property.

Code:
.titleBar h1
{
height: 120px !important;
}