Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Do you have a place to enter CSS modifications other than the theme’s files?
What do you mean, Andrew?
If I understood correctly, no. I use a Child Theme (CSS) to add the modification. I successfully removed the shadow off the menu at the top by using this code:
.menu-bottom-shadow {
background: url("images/sprite_h.png") repeat-x scroll left top white;
height: 3px;
width: 100%;
}
However, that doesn’t sort out my original problem of trying to remove the borders on the sides.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
They’re not borders, they’re shadows;
#container {
-webkit-box-shadow: 0 0 10px #000;
box-shadow: 0 0 10px #000;
}
Use a browser developer tool like Firebug to explore these CSS queries.
Yeah, I used Firebug, mate. I added that and it worked. Thanks very much, mate.