Home › Forums › WoodMart support forum › PROBLEM WITH YOUR PORTFOLIO › Reply To: PROBLEM WITH YOUR PORTFOLIO
December 3, 2020 at 7:37 am
#247216
Artem Temos
Keymaster
Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.
.single-post-navigation {
flex-direction: row-reverse;
}
.single-post-navigation .next-btn {
text-align: left;
}
.single-post-navigation .prev-btn {
text-align: right;
}
.single-post-navigation .prev-btn a {
padding-left: 20px;
padding-right: 50px;
}
.single-post-navigation .next-btn a {
padding-left: 50px;
padding-right: 20px;
}
.single-post-navigation .prev-btn a:after {
content: "\f111";
left: auto;
right: 0;
}
.single-post-navigation .next-btn a:after {
content: "\f110";
right: auto;
left: 0
}