XF 1.5 Page Wrapper

Azuraii

Member
Hey again all,

I was wondering if it was possible to use the Content option in the General Style Properties to add a drop shadow to the center part of my forum, and if so, how I would go about doing it.

Thanks,

- Azuraii
 
It's hard to get support for easy stuff.
I would recommend adding the CSS shadow to EXTRA.css and calling it in General Style Properties

e.g. put this in EXTRA.css
.MyShadow {
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}
 
Top Bottom