MyBB Community Forums

Full Version: Drop Shadow on #container
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
How would I get it to display on both sides? Also, how would I use the div tags -- where?
Somebody please help me up in this thread..

http://community.mybboard.net/thread-68945.html
Erm... why are you posting your link here? Why don't you bump your thread instead of asking for help in this thread... I'm trying to get help here, not you.
ok open your theme global.css, chose #container, in the extra css attributes section put this..

box-shadow: 5px 5px 10px #4c4c4c;
-webkit-box-shadow: 5px 5px 10px #4c4c4c;
-moz-box-shadow: 5px 5px 10px #4c4c4c;

You can change the color of the shadow by changing the color codes. You can also chose px according to your liking..
Thanks, but I want it to display on both sides, and the top&bottom. :o
You just need to change the code..try this one..

box-shadow: 5px -5px 10px #4c4c4c;
-webkit-box-shadow: 5px -5px 10px #4c4c4c;
-moz-box-shadow: 5px -5px 10px #4c4c4c;

Can I see your theme?
Thats just changed it to display on the right and top... I want it to be half the size on all sides :p

Like when you set it to 0 distance but size 5 in photoshop.
Thanks for trying but the code isn't working.. :\
#container {
	background: transparent url(images/midnight/container_bg.png) repeat-y top center;
	width: 960px;
	color: #000;
	margin: auto auto;
	text-align: left;
	padding: 0 40px;
}

However, I don't really know it will work... (I found this on my very old abandon theme)
Pages: 1 2 3