Hey,
You need to add a class here – https://cl.ly/852b520ef0e7
Then use this class to add the CSS. You can add this code to your functions.php file for the theme –
add_action( 'wp_head', function() {
$custom_css = ".my-class .uagb-post__inner-wrap {
display: flex;
}
.my-class .uagb-post__image,
.my-class .uagb-post__text {
width: 50%;
}";
echo '<style type="text/css" id="uagb-custom-css">' . $custom_css . '</style>';
} );
This will simply be applied to only the Post Grid having the class – my-class
.
I hope this resolves your doubt.
Regards,
Vrunda Kansara