My H2 tag is too large, need help to fix issue

Hello,
I am trying to use H2 subheading tags, but they are way too largeā€¦ but the carousel titles are fine.

when I added some css to make the H2 tag 35pt only. the subheading size is great, but the
carousel titles are much too large. need help so that my h2 tags are 35pt but does not affect my carousel heading

I also need to REMOVE the date from the slider
Thx kim

www. Rendezvousmag.com

Hi There,

Please add the following CSS

.h-entry-cover {

    font-size: 15px !important;
}

Hope it helps

yes, that took care of the heading, the other question was how to get rid of the date on the slider? thx

Hello @rendezv,

Apologies for the confusion. Please setup child theme and have a look at Customization Best Practices article in the Knowledge Base to setup a child theme before proceeding with core changes and modify views in the theme as needed.

After that please open the file _post-slider.php under /wp-content/themes/x/framework/views/ethos/ and find the following code:

<span class="featured-meta"><?php echo x_ethos_post_categories(); ?> / <?php echo get_the_date( 'F j, Y' ); ?></span>

and replace the same with:

<span class="featured-meta"><?php echo x_ethos_post_categories(); ?></span>

Thanks.