Hi Monique,
I’m glad Pique’s working well for you!
It is possible to increase the number of posts that display in the recent posts panel, however, the steps needed do require you to play about a little with the theme’s PHP.
If you’re comfortable doing that then the first step is for you to set up a child theme.
The following guides provide a good introduction to child themes, including steps to set one up:
After you have set your child theme up, copy the parent’s components/content-front.php file to your child theme’s directory and then open it in your favourite text/code editor.
Locate the following code in that file:
<?php // Show four most recent posts
$recent_posts = new WP_Query( array(
'posts_per_page' => 3,
'post_status' => 'publish',
) );
?>
Change the number next to 'posts_per_page' =>
from 3 to the number of posts you wish to display.
Next, locate the following code in the file:
while ( $count < 3 AND $recent_posts->have_posts() ) : $recent_posts->the_post();
Again, change the number 3 to the number of posts you wish to display.
Save you changes and the updated number of posts will then display on that section of your site.
Let me know how you get on with that! I’ll be happy to help if any questions come up along the way.