-
AuthorPosts
-
September 22, 2015 at 5:41 am #398554
Hello,
Can You tell me please, what is the correct CSS to get rid of the inner/top shadow of the search bar? This code seems to work for me, but only on desktop browsers..:
.form-search .search-query { box-shadow: none; }
Thanks a lot in advance.
Cheers.
September 22, 2015 at 5:46 am #398559This reply has been marked as private.September 22, 2015 at 6:02 am #398578Hi There,
Please try the following CSS instead:
.form-search .search-query { box-shadow: none !important; border: 1px solid #ddd !important; }
Hope it helps!
September 22, 2015 at 7:37 am #398667Hi,
thank You… after using Your code, there is still the shadow on mobile. e.g. Safari/iPad
Cheers.
September 22, 2015 at 7:53 am #398680Hi there,
Update previous code to :
.form-search .search-query { box-shadow: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; border: 1px solid #ddd !important; }
Clear cache and test again.
Thanks.
September 22, 2015 at 9:19 am #398776Hi,
thanks for the update. the shadow is still visible on safari/iPad. (cleared browser cache)
Thanks.
September 22, 2015 at 9:41 am #398813Hi,
Please add this code as well.
div.x-widgetbar * { box-shadow: none !important; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; }
Thanks
September 22, 2015 at 10:02 am #398840Hi,
..no changes with this one.
Thanks.
September 22, 2015 at 11:19 am #398913Hi there,
Thanks for updating. Maybe we are not getting the issue correctly. Would you please clarify it a bit with a screenshot pointing the shadow so that we can make sure we are suggesting you the right code?
Thanks
-
AuthorPosts