Posts

Showing posts from May, 2019

Blog Post Sticky Pagination

/************** HTML **********************/ {% if content.previous_post_slug %} {{ content.previous_post_name }} {% endif %} {% if content.next_post_slug %} {{ content.next_post_name }} {% endif %} /******************************* CSS ********************************/ .avia-post-nav { position: fixed; height: 110px; top: 50%; background: rgba(0,0,0,0.1); color: #fff !important; text-decoration: none !important; margin-top: -55px; padding: 15px; text-decoration: none; z-index: 999999; -webkit-transform: translate3d(0,0,0); -moz-transition: all 0.3s ease-out; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; } .avia-post-next span.entry-title { padding: 0 20px 0 0; } .avia-post-nav .label { position: absolute; top: 50%; height: 22px; line-height: 22px; margin-top: -11px; font-size: 24px; left: 10px; } .avia-post-nav .entry-info-wrap{ -moz-...