Why is my product page button invisible on the Dawn theme?

Hello! We have had our Shopify page for about a year now but just realized our product page button is invisible. This is not the checkout button but we have so many products under a page but you don’t know there is multiple pages of products because of the invisible button. We use the Dawn theme and not sure if this is a quick fix? Thanks for any help

@wcook1019 Hope you are doing well.

Could you please share the store URL and the screenshot of the issue?

Hello @wcook1019
can you share store URL?

https://nerdpropaganda.myshopify.com/

There is multiple things under the funko tab. If you click around it will go to the next page but just doesn’t show it so you wouldn’t know

^ replied with everything above!

@wcook1019 , Please add the below line of CSS code at the end of your base.css file. You can find this file under the assets folder.

body .pagination__item{
color:#000;
}

Hi @wcook1019

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

.pagination__item {
color: black !important;
background: white;
border-radius: 08px;
border: 0.5px solid;
}

Use This For Batter Look Css

.pagination__item {
color: black !important;
background: white;
border-radius: 08px;
border: 0.5px solid;
}

Use This

Shows up now! Thank you!