• Hello, I want to disable the “type-card-thumbnail” feature in the theme. I only need the title. Please guide me on how to disable it across the entire website. Thank you!

Viewing 1 replies (of 1 total)
  • Theme Author Alexander Agnarson

    (@alxmedia)

    Hi, in content.php and content-featured.php, edit line 6:

    <div class="type-card-thumbnail" style="background-image:url('<?php the_post_thumbnail_url('bigvisual-large-square'); ?>');">

    Remove the last bit, so you only keep:

    <div class="type-card-thumbnail">

    This will remove the background image from each post.

    If you want to get rid of it from single post as well, do the change to line 12 in single.php.

    Or if you want a simpler solution, add this as additional CSS:

    .type-card-thumbnail { background-image: none!important; }
Viewing 1 replies (of 1 total)

The topic ‘I want to disable the “type-card-thumbnail”’ is closed to new replies.