Forum Replies Created
-
AuthorPosts
-
powredMember
Thank you, Marcy. Your great suggestions set me on the road to figuring this out. My blog page is my front page so the next/previous pagination is a crucial part of my site. I solved this by adding a custom html block to the "Home-bottom" widget area:
<div class="archive-pagination pagination"> <div class="pagination-next alignright"><a href="https://www.spursfanatic.com/spurs-result/page/2/">Next Page ยป</a></div> </div>
Thanks for your help!
powredMemberHi, I found myself here as I want to add a title in to one of the widget blocks of the Essence Pro theme. Adding a Custom HTML or text widget just creates another column and I want this title to sit above the three widget columns.
The widget area I want to add the title to is the "Front Page Featured" block.
function essence_front_quote_widget() { if ( is_active_sidebar( 'front-page-featured' ) ) { essence_do_widget( 'front-page-featured' ); }
I tried to adapt the code posted above:
add_action( 'genesis_loop', 'essence_front_page_title', 5 ); function essence_front_page_title() { echo '<h1 class="before-widgets">Title</h1>'; }
But have not had any success.
Any help would be greatly appreciated. The inserted title is to go above the three 'Popular Treatments' on this page, as currently I am using the widget area above and have just taken out the bottom margin - not a great idea I know, but I am struggling with this.
https://www.theglobalmesh.com/ -
AuthorPosts