Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a place to enter CSS modifications other than the theme’s files?

    Thread Starter utdweekly17

    (@utdweekly17)

    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.

    Thread Starter utdweekly17

    (@utdweekly17)

    Yeah, I used Firebug, mate. I added that and it worked. Thanks very much, mate.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Graphene border’ is closed to new replies.