Ok I figured it out in the end.
To do it I did this:
In the stylesheet.css a this line:
.navigation {
padding: 10px 10px 10px 0;
}
I changed it to:
.navigation {
padding: 10px 10px 10px 0;
display: none;
}
And in the singlepost.php
I removed <?php k2_navigation(‘nav-above’); ?> and the one that says “below” instead of “above”.
Hopefully that’s a decent way to do it. Let me know if you think there’s a better way.