Thank you guys so much for your replies!
The css Falguni provided worked like a charm!
The site is http://evergreenkidscorner.org/
I can figure out how to get rid of the title by several different methods but I don’t know where the line underneath is coming from. I think it is just a rectangular drawing.
When I inspect the element in my page source it seems to be calling .entry-meta. But I don’t know enough about that to know for sure or to change it properly.
This seems like it might be where it is defined in the style sheet but I’m not entirely sure:
.entry-meta a{
clear: both;
color: #727272;
text-transform: capitalize;
line-height: 1.7;
}
.entry-meta h5{
margin-top: 0px;
margin-bottom: 0px;
}
.entry-header .entry-meta::after{
content:””;
height: 2px;
display: block;
width: 50px;
margin: 10px auto;
}
would it work to do
.entry-meta {display:none}
or would there probably be other things defined by meta which I would not want to touch?