You can remove the red categories using this snippet of CSS:
.newscategory {
display: none;
}
You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.
To add a horizontal line between the author name and the post content you will first need to create a child theme.
Next,
1. Create a folder within your child theme folder called ‘inc’
2. Within that folder create another folder called ‘partials’
3. Go to your parent theme folder and download these two files from mediaphase-lite/inc/partials :
content-blog-default.php
content-single.php
4. Open up the first file (content-blog-default.php) and go to about line 65 and you will see this:
<h1 class="singleposttitle"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
5. Directly below that line add this : <hr>
6. So, in the end it will look like this:
<h1 class="singleposttitle"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<hr>
<p class="newsauthor"><?php _e( 'Posted By', 'mediaphase-lite' ); ?> <a
href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>"
class="authorname"><?php the_author(); ?></a></p>
7. Open the content-single.php file and go to about line 57 and repeat the process from #4.
8. Save both files and upload them to your child theme inside the inc/partials folder.
Here’s a picture of the final result: Screenshot
I hope that helps ??
Cheers,
Luke the Daft Duke