Page Break and Photo question

Posted in: Newspaper
Post count: 8

I currently have a post that is using Style 3 Post template with the large photo.

It is a very long post, so i am using Page Breaks (<!–nextpage–>).
1. How can i add text that says “Continue Reading” above the row of numbered sections associated with each page break?
2. Is there a way to omit the large photo on pages 2, 3, 4, etc? I don’t want to repeat the same large photo when they click for the next page section.

Post count: 35449

Hi,

1. This can be achieve with a custom css -> https://i.imgur.com/HKiIWrE.png
footer .td-pb-padding-side::before {
content: "Continue Reading";
padding: 6px 0;
display: block;
}

The code need to be set in theme panel> custom code> custom css.

2. For this you can use this custom css ->
body[class*="paged"] .tdb_single_featured_image{
display: none;
}

Hope this will help you!
Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.