You can change the CSS directly. What I do is to use Google Chrome, right-click, inspect an element and then change the CSS live in the customize menu in the backend. I hope that helps…
I can’t add a topic so I’ll post here that every time I update the theme I have to change a .PHP on the template for template-parts/post/content.php as follows:
<?php
/**
* Template part for displaying posts
*
* @package super-minimal
*/
?>
<article id=”post-<?php the_ID();?>” <?php post_class();?>>
<header><meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″>
<?php the_title(‘<h2>‘, ‘</h2>’);?>
</header>
<?php if (has_post_thumbnail()): ?>
<div class=”post-thumbnail” >
” title=”<?php the_title_attribute();?>”>
<?php the_post_thumbnail(‘thumbnail’);?>
<?php // $category = get_the_category();
// the_excerpt(); ?>
<?php endif;?>
<?php
$category = get_the_category();
//if ($category[0]->cat_name !== ‘Book Reviews’) {
the_excerpt();
//}
?>
</br>
</div>
</article>
I see that there is a missing ‘thumbnail’ to display the pics. I hope a developer sees it here.