How to put element.style in additional css

When it says element.style in css when I inspect the page how do I put this into additional css?
we want to change the font size for the listing attributes.

It’s possible to target elements via CSS classes, if you use the browser web inspector to highlight elements please check their unique CSS classes. For example, the listing title has .hp-listing__title CSS class, you can also make it more precise by adding the parent container class:

.hp-listing--view-block .hp-listing__title { styles for the listing block title here }
.hp-listing--view-page .hp-listing__title { styles for the listing page title here }

You can add custom CSS snippets in Appearance/Customize/Additional CSS section.

thank you yevhen

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.