Border between Full Entry and the Previous/Next links

How can i change te color and margin the border between Full Entry and the Previous/Next links

That is not currently an option. I’ll note it as a future improvement.

1 Like

As a short term workaround, depending on what you to achieve, add this custom css and adjust accordingly.

.prev-next-wrapper {
    padding-top: 21px;
    margin-top: 42px;
    border-top: 1px solid #e5e5e5;
}

For instance, if you want to increase the size of the line and change it’s colour you’d put something like this…

border-top: 10px solid #000000;

That will change it from 1px deep to 10 and change the colour to black.

To change the gap between the line and the actual next/previous blocks you’d change the padding-top value.

I’ve never used this css hack, or tested it, so I’ve no idea if it messes up other aspects on the page or layout, so use at your own risk and test it thoroughly before deployment.

Thanks for the css hack. I’m going to test it on Sunday.
I will let you know if it works.

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.