This how-to is for those people who doesn't know css styling but still need to work with e-commerce. The default e-commerce doesn't have any css for its product pagination. So it just bunched up together & doesn't looks good. So here is the process.
Note: If you are a css expert, then this how-to is not for you.
You just need to navigate to the themes folder under your roots packages directory. Then open themes main stylesheet/css file & put the below code at the bottom of the page.
print(".pagination {
color: #60605F !important;
font-size: 14px !important;
margin-bottom: 10px;
margin-top: 15px;
}
.pagination span {
margin-right: 3px;
}
.pagination a {
color: #C63918;
text-decoration: none;
}
.pagination a {
text-decoration: underline;
}
");
Loading Conversation