journalismhub
Member
Posted 1 year ago #
Hello - when reading a post published on my site - there is the previous and next links to show previous post and next post. I don't want to have these in my posts. How can I remove them all the time.
Check here for an example: http://journalismhub.com/gender_issues_jordan_1/
My site is: http://www.journalismhub.com
Thanks,
JH
in Twenty Ten (or in a clone such as your theme) you should be able to find that in loop-single.php:
remove both the full divs 'nav-above' and 'nav-below'
journalismhub
Member
Posted 1 year ago #
Could you please give me the steps?
Much appreciated.
testingmoon
Member
Posted 1 year ago #
Hello, it's very simple, go to your "style.css" (line 920)
Then change this line:
display: block;
TO THIS:
display: none;
journalismhub
Member
Posted 1 year ago #
How can I know which line is this? As in Line number? There are so many "display: block" so what comes before it and after it?
Thanks guys
JH
testingmoon
Member
Posted 1 year ago #
????? I just said which line.
journalismhub
Member
Posted 1 year ago #
Yes but i cant see line numbers?
testingmoon
Member
Posted 1 year ago #
Alright, find this line:
.paged #nav-above, .single #nav-above {
Below that you will see display:, change it to what I've mentioned previously.
journalismhub
Member
Posted 1 year ago #
thanks but this removed the top next/previous but kept the one at the bottom of the post. How shall I remove that as well?
Thanks
JH
testingmoon
Member
Posted 1 year ago #
Find this line below:
#nav-below {
Then replace everything in here:
#nav-below {
margin: -18px 0 0;
}
To this:
#nav-below {
display: none;
}