WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1Box shadow problem  Empty Box shadow problem Mon Jan 31, 2011 11:34 pm

Matti

Matti
Registered Member
Registered Member
Hi, guys

When I use box shadow inset that works but when I use them both they doesn't work can any one tell me how to fix this...

#wrap {
-moz-box-shadow:inset 0px 5px 10px #626364;
-webkit-box-shadow:inset 0px 5px 10px #626364;
box-shadow:inset 0px 5px 10px #626364;
}

This is for the background shadow but it doesn't work only the inset shadow work.
#wrap {
-moz-box-shadow: 0px 5px 10px #626364;
-webkit-box-shadow: 0px 5px 10px #626364;
box-shadow: 0px 5px 10px #626364;
}

http://csshelp.forumotion.net/

2Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 2:51 am

Kryptonian


Registered Member
Registered Member
Outset box shadow? Razz

Inset box shadow? Razz

The CSS you have isn't incorrectly placed or anything. Its likely that its something else to do with other CSS you have, or your browser... Razz (I'm likely to believe that its other CSS?)

http://www.scryptonite.com/

3Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 3:16 am

Guest


Guest
I think he's trying to do both simultaneously, like this:

Inset/outset box shadow? Razz

He must combine the box-shadow rules into a single rule, as follows:

Code:
#wrap {
-moz-box-shadow:0px 5px 10px #626364,inset 0px 5px 10px #626364;
-webkit-box-shadow:0px 5px 10px #626364,inset 0px 5px 10px #626364;
box-shadow:0px 5px 10px #626364,inset 0px 5px 10px #626364;
}

4Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 3:51 am

Kryptonian


Registered Member
Registered Member
@Dion good thinking. Hooray for multiple shadows. Razz
Spoiler:

http://www.scryptonite.com/

5Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 4:29 am

Emilio

Emilio
Registered Member
Registered Member
Haha , You guys make me laugh
You guys make it look so easy Smile

http://www.graphilicious.forumotion.Com

6Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 6:05 am

Guest


Guest
Emilio wrote:You guys make it look so easy Smile
Krypt has come a long way in the past year...but then again, he learned from "studying" my code, so the result was inevitable. Very Happy

7Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 7:00 am

RecAgenda

RecAgenda
NewsReporter
NewsReporter
Now, now children. Rolling Eyes

http://www.recagenda.wordpress.com

8Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 10:14 am

Kryptonian


Registered Member
Registered Member
@RecAgenda Razz

@Dion Popcorn

http://www.scryptonite.com/

9Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 10:52 am

Russel

Russel
Moderator
Moderator
May i remind you guys to please avoid being off topic. All posts must be constructive in nature.

https://www.twitter.com/russeltubo

10Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 4:21 pm

Matti

Matti
Registered Member
Registered Member
dion wrote:I think he's trying to do both simultaneously, like this:

Inset/outset box shadow? Razz

He must combine the box-shadow rules into a single rule, as follows:

Code:
#wrap {
-moz-box-shadow:0px 5px 10px #626364,inset 0px 5px 10px #626364;
-webkit-box-shadow:0px 5px 10px #626364,inset 0px 5px 10px #626364;
box-shadow:0px 5px 10px #626364,inset 0px 5px 10px #626364;
}


Thank you Dion, much I appreciate your help. Very Happy

http://csshelp.forumotion.net/

11Box shadow problem  Empty Re: Box shadow problem Tue Feb 01, 2011 6:35 pm

Jophy

Jophy
Registered Member
Registered Member
Solved => Locked

http://www.socialtechforum.com/

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum