Hi, I have changed the standard numbered page navigation to a simple ‘Older posts / Newer posts’ navigation. I have added left and right symbols using this code:
.nav-previous .prev a:before {
content: "❰";
padding-right: 10px;
}
.nav-next .next a:after {
content: "❱";
padding-left: 10px;
}
However, on some occasions the symbols are replaced with characters (see screenshot) and back to symbols after the screen is refreshed. I’m using the SVG Icon theme option so not sure if this is causing this behaviour.
https://ibb.co/S7dYFsh
Would I be better off using SVG icons instead of symbols? If so, how would I include them in the above code?
This is on a local host so I cannot show you a live site example.
Thank you.