Skip Navigation

[Resolved] The Search Reset button/link thing is showing drop shadow even tho none is set

This support ticket is created 2 years, 7 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

This topic contains 2 replies, has 2 voices.

Last updated by gordonW-2 2 years, 7 months ago.

Assisted by: Waqar.

Author
Posts
#2356645
Screen Shot 2022-05-05 at 2.15.21 PM.png

Hello.

On our Project Portfolio page, the "Clear all Filters" link is showing a drop shadow. on hover. The problem is that none is set in the settings for that block.

How do I prevent this? Attached is a screenshot of the current settings.

The page is at: hidden link and the issue is viewed by simply hovering over the "X Clear all Filters" link to the left of the project images

thx.

#2356825

Hi,

Thank you for contacting us and I'd be happy to assist.

The box-shadow style is being added from the CSS code coming from the Kadence theme.

To override it, you can include the following custom CSS code in the view's CSS editor:


.wpv-filter-form input[type="button"],
.wpv-filter-form input[type="button"]:hover,
.wpv-filter-form input[type="button"]:focus {
    box-shadow: none !important;
}

Tip: To check which CSS code is applying to different page elements, you can use Google Chrome's inspect element tool, as explained in this guide:
hidden link

regards,
Waqar

#2357819

Ahh ... thank you. I was pulling my hair out trying to figure out wy that was happenening.

Thank you for your help!

My issue is resolved now. Thank you!