BuilderChild-Acute-Blue
From IThemes Codex
Contents |
How to show Previous and Next Post links in single posts
Edit child theme's single.php.
2. Add the following at the end of child theme's style.css (WP dashboard -> Appearance -> Editor):
.single-post .loop-footer .alignleft a,
.single-post .loop-footer .alignright a {
background: none;
border: none;
text-shadow: none;
padding: 0;
display: inline;
}
.single-post .loop-footer .alignleft,
.single-post .loop-footer .alignright {
padding: 4px 10px;
background: #0081C6 url('images/lines.png');
border: 1px solid #006194;
text-shadow: #00A1F7 1px 1px;
}
.single-post .loop-footer .alignleft a:hover,
.single-post .loop-footer .alignright a:hover {
background: none;
}
.single-post .loop-footer {
margin-top: 2em;
}