create180design 1 Report post Posted September 12, 2011 Hi there, I would like to be able to add a drop shadow to the page to be global on all pages. www.susanconstantine.com/create180 Thank you! Share this post Link to post Share on other sites
Kate 3 Report post Posted September 12, 2011 You can achieve that with custom CSS or images and CSS. Here's some info on the CSS approach: http://www.webtoolkit.info/css-drop-shadow.html Share this post Link to post Share on other sites
create180design 1 Report post Posted September 12, 2011 Thanks Kate, but I'm not a code developer. Can you be a bit ore specific please? Share this post Link to post Share on other sites
kastelic 6 Report post Posted September 12, 2011 This should get you started. The first pixel dimension is the distance from x The second is the distance from y The third is the blur amount The fourth is the color (hex code) [code] #page-main { -webkit-box-shadow: 0px 0px 15px #000; -moz-box-shadow: 0px 0px 15px #000; box-shadow: 0px 0px 15px #000; } [/code] Share this post Link to post Share on other sites
create180design 1 Report post Posted September 12, 2011 Worked great. Thank you! Share this post Link to post Share on other sites