How to Move Read More Link to a New Line on GeneratePress Theme?

To place the “Read More” link on a new line use the below CSS Code Snippet.

Copy the below snippet and go to Appearance > Customize > Additional CSS and past it there.

CSS Code Snippet

.read-more {
	display: block;
        margin-top: 10px;
}

Leave a Comment