I am new to wordpress development ,I have developed a custom wordpress theme but i am not able to give CSS to the posts.Posts are rendering in very normal way but i want to give some CSS, please suggest me how i can do this?
I have added image how posts are appearing and code of page.php of my wordpress theme. Seeking some help
Code:
<?php get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
// Start the loop.
while ( have_posts() ) : the_post();
// Include the page content template.
get_template_part( 'template-parts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
// End of the loop.
endwhile;
?>
</main><!-- .site-main -->
<?php get_footer(); ?>