Hello,
Go to Customize > Blog > Blog Entry and select Thumbnail layout. Also, set the excerpt length if you want. Can you share your site link so that I can check it?
It would be also possible to insert a “continue reading” button after the excerpt and customize the font of the excerpt?
Many Thanks: The previous question has been sorted out.
If you are using the Thumbnail entry style for the blog entry. Please follow the below steps.
Step 1 – Download OceanWP Child theme, install and activate it. Here is the link for child theme and documentation on how to properly install it – OceanWP Child Theme
Step 2 – Open the functions.php file of the child theme and add the code below.
if(!function_exists('read_more_on_thumbnail')) {
function read_more_on_thumbnail() {
$style = get_theme_mod( 'ocean_blog_style', 'large-entry' );
if( 'thumbnail-entry' == $style ) {
return get_template_part( 'partials/entry/readmore' );
}
}
add_action('ocean_after_blog_entry_content', 'read_more_on_thumbnail');
}
Step 3 – Add the below CSS code in the Customize > Custom CSS section to style the continue link.
.blog-entry.thumbnail-entry .blog-entry-readmore a {
display: inline-block;
font-size: 12px;
line-height: 1.2;
padding-bottom: 3px;
border-bottom: 1px solid;
text-transform: uppercase;
padding-bottom:7px;
margin-bottom:10px;
}
.blog-entry.thumbnail-entry .blog-entry-readmore i.fa.fa-angle-right {
margin-left:5px;
}
For the excerpt font style – Add it to Customize > Custom CSS section. Edit the code as per your need.
.blog-entry.thumbnail-entry .blog-entry-summary {
font-family: Roboto;
font-size: 18px;
font-style: italic;
font-weight: 300;
}
Hope it helps you. Let me know if you need any other help.
Great! Many thanks It did help!
I’d have the last question: when I open my post the menu top bar disappears.
there is in the home page as well in the categories section but not in the single posts.
Any Help?
Can you share your site link so that I can check it?
It is because for the home page, category page you are using default OceanWP template. For the single post, you are using Brizy template with a blank layout. Try to check the single page template settings again to fix it.