Log in

View Full Version : Resolved Border on web page but unable to locate in css



theremotedr
04-11-2016, 11:27 AM
Hi,
Please use this page as a guide http://www.theremotedoctor.co.uk/index.html
Please scroll over & then down Accessories.
You will see a faint outer border.
I am trying to remove this faint border but cant seem to locate it.

Please advise.

5885

styxlawyer
04-11-2016, 01:31 PM
That's a drop-shadow. Go down to the last entry in the list and you'll see it is underneath as well as at the right-hand side. You'll have to search through your multiple external CSS files.

theremotedr
04-11-2016, 02:51 PM
Having checked my multiple css files i have now found that the 2 codes below were the issue.


border: 1px solid;
-webkit-box-shadow: 2px 3px 2px 0px rgba(00, 00, 00, .3);
box-shadow: 2px 3px 2px 0px rgba(00, 00, 00, .3);

styxlawyer
04-11-2016, 04:06 PM
Well done.