Hi! I've just added a layout to my gallery but can't figure out the last bit of coding I need.
The Wishlist Search and Page Navigation are the default white and blue and I'd like to change their color. Does anyone happen to know the coding for this?
Oh, and if you happen to know how to center the Page Navigation that would great too!
Thank you!
Currently selling:
here's how you do it, i took the pagination directly from my own gallery code so edit it as needed ^^
/* pagination start */
/* centre pagination */ .pagination{ justify-content:center; }
/* colors for pagination tabs */ .pagination .page-item .page-link{ background-color: var(--catbg) !important; border-color: var(--catbg) !important; border-radius: 0px !important; color: var(--cattext) !important; }
/* colors for pagination tabs on hover */ .pagination .page-item .page-link:focus, .pagination .page-item .page-link:hover { background-color: var(--catbghover) !important; border-color: var(--catbghover) !important; border-radius: 0px !important; }
/* color for the pagination tab you are currently on (so "1" if you're on the main page) */ .pagination .page-item.active .page-link{ background-color: var(--catbg-active) !important; border-color: var(--catbg-active) !important; border-radius: 0px !important; }
/* pagination end */
/* item search start */
/* textbox */ -search{ background:white !important; border-radius:0 !important; border:1px solid green !important; }
/* button */ .btn[type=submit]{ background:white !important; color: black !important; border-radius:0 !important; }
/* item search end */