Prev & Next Post Arrow Issue
-
Hello, I wonder if anyone can offer some assistance with a CSS issue I have. It seems that one (yes just one) of the greater than (>) symbols on my ‘Previous‘ and ‘Next‘ post buttons is on the wrong side…
As you can see from the image above, I would love to be able to have the righthand one the other side of the next post link like so: NEXT >
My current CSS is as follows:/* Post Prev and Next Links */ #nav-below { margin-top: 50px; } .post-navigation { display: flex; } .nav-previous { margin-right: auto; } .post-navigation .nav-previous:before { content: "Previous Article:"; display: block; font-size: 14px; font-weight: bold; text-transform: uppercase; } .post-navigation .nav-next:before { content: "Next Article:"; display: block; font-size: 14px; font-weight: bold; text-transform: uppercase; } @media(max-width:767px) { .single-post nav#nav-below { flex-direction: column; } .single-post nav#nav-below > * { width: 100%; } }
Thanks you in advance.
The page I need help with: [log in to see the link]
- The topic ‘Prev & Next Post Arrow Issue’ is closed to new replies.