Home Forums WordPress Themes – Premium Preference Shadows Reply To: Shadows

#17972
Sushil Adhikari
Moderator

wow… I almost didn’t recognize the theme, lol. Anyway, the shadow is found in the theme’s style.css file around line 124 and looks like this:

[code type=css]#content-wrapper {
min-height:200px;
background-color:#f8f8f8;
border-bottom:5px solid #595a67;
border-radius:60px 60px 0 0;
-webkit-border-radius: 60px 60px 0px 0px;
-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .2);
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .2);
}

It’s the -webkit-box-shadow and the box-shadow. You can even remove the border radius if you wish.