Archived topic
border around current page
2 replies · Started by Lukasz on June 4, 2020
Viewing posts 1–3 of 3
hi everyone,
I would like to carry out the border around current page. I mean a number which shows a current page. My CSS code looks like:
.nav-links {
text-align: center
}
.page-numbers {
margin: 5px;
}
.page-numbers.current {
background-color: blue;
color: white
}
I am enclosing the link to the image what I am saying.
https://ibb.co/Vj2MS4W
Ok, I've found the simply solution, maybe someone will be using it
.nav-links {
text-align: center
}
.page-numbers {
margin: 4px;
}
.page-numbers.current {
padding-left: 4px;
padding-right: 4px;
border-bottom: 1px solid;
}
GLad you've figured out :)
This archived topic is closed to new replies.