Hello support team,
I would like to remove the box shadow from the pagination on the search results page.
This code does not seem to be working
.search-results .x-pagination{
box-shadow:none; !important
}
Help would be appreciated.
Thanks
Hello support team,
I would like to remove the box shadow from the pagination on the search results page.
This code does not seem to be working
.search-results .x-pagination{
box-shadow:none; !important
}
Help would be appreciated.
Thanks
Hello @dstro003,
Thanks for writing in!
It is because a semi-colon ;
wasn’t properly placed on your CSS rule. Semi-colons is a must to end a CSS rule declaration.
Please update your current code to this:
.search-results .x-pagination {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
Hope it helps.
Thanks for the help Jumar,
but the code does not seem to be working.
The box shadow on the pagination is still showing.
Thanks!
HI there,
The page you have linked requires login access.
Please provide us with the logins in a Secure Note so that we can check it.
Thank you.
Sorry about that! I have added the login info
Hello there,
You can use the CSS code:
.x-pagination a, .x-pagination span {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
border: 1px solid #eaeaea;
}
Hope this helps.
Hey Jumar,
Thank you for the updated code! It has worked!
Is there any way to remove the text shadow on the pagination as well?
I tried adding span. current to this but it did not seem to work
Thanks again for the help!
Hi there,
Please update the code to:
.x-pagination span.current,
.x-pagination a, .x-pagination span {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
border: 1px solid #eaeaea;
}
Hope this helps.
Great! Thanks for your help!
You’re most welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.