I have an astra theme.
I pasted the code through the snippet plugin.
screen. https://prntscr.com/se2uf0
nothing changed
/**
* Adds CSS rules to the Cards Compact theme.
*
* @param string $additional_styles
* @param string $theme_astra
* @return string
*/
function wpp_additional_css_rules($additional_styles, $astra){
if ( ‘cards-compact’ == $astra ) {
$additional_styles .= ‘.wpp-post-title { font-size: 10px; font-weight: 300px; color: rgb(102, 102, 102) }’;
}
return $additional_styles;
}
add_filter(‘wpp_additional_theme_styles’, ‘wpp_additional_css_rules’, 10, 2);