As a newcomer to CSS trying to start my own blog, I've hit a stumbling block that I can't seem to figure out.
My code currently displays the picture, title, and descriptions of each post on the main page. However, I only want the picture to display in a way that covers the entire box, without any other text or explanations alongside it.
Being very new to coding, I'm struggling to locate the specific part of the code that needs to be adjusted. So, I'll include the full code for you to review:
You can find my blog at
Here is the complete code: https://gist.github.com/anonymous/449db483824c113e283b
After receiving advice from @Pham Mim Tim:
I see where you mentioned the section of code that needs attention, but I'm still having trouble figuring out how to implement it:
<div class='post hentry uncustomized-post-template simpleCart_shelfItem'>
<a expr:name='data:post.id'/>
<b:if cond='data:blog.pageType == "static_page"'>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'>
<data:post.title/>
</a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'>
<data:post.title/>
</a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
</b:if>
<div class='post-header-line-1'/>
<a expr:href='data:post.url'>
<div class='post-body entry-content'>
<b:if cond='data:blog.pageType != "static_page"'>
<div class='simpleCart_shelfItem'>
<div class='item_name'>
<data:post.title/>
</div>
Even with this guidance, I am still struggling to determine where exactly within the code this adjustment should be made.