MyBB Community Forums

Full Version: CSS Container Shadow?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Do you see the shadow on the side of this MyBB Forum? I would like to know how to add a shadow like that, that is compatible in IE
There is no shadow in these containers... But if you would like to add some use:

	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);

I don't think this works on IE8 but will work on IE9 that's coming out soon.
I am using that but it doesn't work on IE, I need something like the one used in this Community Forum
(2010-07-01, 01:49 PM)Bob Jansen Wrote: [ -> ]There is no shadow in these containers... But if you would like to add some use:

	box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);

I don't think this works on IE8 but will work on IE9 that's coming out soon.


That causes lag to the forum, there is a shadow on this forum its an image

Shadow image (its hard to see):

[Image: vdjt50.png]

Heres the css for it:
div#shadow {
background:url("/images/shadow.png") repeat-y scroll left top transparent;
height:auto;
margin:auto;
position:relative;
width:980px;
}
Where will I add it?
(2010-07-03, 10:31 AM)E-Hero Kyle Wrote: [ -> ]Where will I add it?

global.css of your theme.
What part or what section of the Global CSS?
(2010-07-01, 01:53 PM)E-Hero Kyle Wrote: [ -> ]I am using that but it doesn't work on IE, I need something like the one used in this Community Forum
Did you just read what I said? IE9 is coming out soon, just be patient.
How about using the shadow image?
The shadow of mybb is distance 0 and NOT inset: box-shadow: 0 0 12px #666;

IE9 has a release date??

E-Hero, The shadow image will show up en IE (just like the MyBB forum has).
Pages: 1 2