I need help adjusting the page numbers on the bottom of my collection page on mobile view. Here is a pictucture of it now:
I would like to move it down to right on top of the newsletter line. Also I would like to remove those boxes around them and make the current page number visibility lower so it shows gray.
Here is the website: https://568839.myshopify.com/
HI @galleriste
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
@media screen and (max-width: 768px){
page-pagination.pagination {
margin-top: 120px !important;
}
}
Here is the result:
I hope this helps
Best,
Daisy
Thanks, how about the boxes around the numbers?
Hi @galleriste
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
@media(max-width:768px){
.content-box.content-box--medium.content-box--text-center.content-box--center.text-container {
display: none;
}
.product-facet {
margin-bottom: 0 !important;
}
.shopify-section.shopify-section--slideshow {
height: 61px !important;
}
}
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hi @galleriste
Please add this code more
@media screen and (max-width: 768px){
page-pagination.pagination nav.pagination__nav > span::before {
box-shadow: none !important;
}
}
@media screen and (max-width: 768px){
div#shopify-section-template--18152640217353__slideshow_tEKcmH {
display: none !important;
}
product-facet.product-facet {
margin-bottom: 0 !important;
}
}
Best,
Daisy
@galleriste
- Go to Online Store → Theme → Edit code.
- Open your theme.css / based.css file and paste the code in the bottom of the file.
.pagination__nav-item {
box-shadow: none !important;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Hi @galleriste
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
div#facet-main {
display: flex;
flex-direction: column;
gap: 12rem;
}
product-facet.product-facet {
margin-bottom: 0 !important;
}
.pagination__nav-item {
box-shadow: none !important;
}
.pagination__nav-item[aria-current] {
color: grey;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Can you remove the square from the selected page number aswell? And would it be possible to make the arrow smaller?
Yes, it can be removed, but your store is currently password-protected.