Viewing 3 replies - 1 through 3 (of 3 total)
  • is the cod showing background shadow in your theme style.css

    you can modify in your child theme css either diplay none or remove the shadowing code

    .effect-1:before, .effect-1:after {
        content: "";
        position: absolute;
        z-index: -500;
        bottom: 20px;
        left: 10px;
        width: 50%;
        /* height: 20%; */
        /* max-width: 300px; */
        -webkit-box-shadow: 0 20px 10px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0 20px 10px rgba(0, 0, 0, 0.75);
        /* box-shadow: 0 20px 10px rgba(0, 0, 0, 0.75); */
        -webkit-transform: rotate(-4deg);
        -moz-transform: rotate(-4deg);
        -o-transform: rotate(-4deg);
        -ms-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
    Theme Author Richie KS

    (@rkcorp)

    add this to theme option->custom css
    .effect-1:before, .effect-1:after { display:none !important; }

    Thread Starter jorgemuchacuar

    (@jorgemuchacuar)

    Thank Richie Work

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove shade from top navigation’ is closed to new replies.