The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
24 views

ie8 legacy opacity on child makes holes in background of parent container

http://www.z4digital.net/temp/photos/screencap.jpg Hitting rules button would bring up a modal that has a checkbox. Hitting the checkbox would hide the modal, deactivate and fade the label and the ...
1
vote
2answers
71 views

How can I make a CSS wraparound drop shadow? Or is there a good way? With the least duct tape?

I would like a rectangular DIV to have a dropshadow around it on all four sides. Now I might be able to get something like I want by using a container div and have one drop shadow with positive and ...
0
votes
1answer
48 views

CSS3 “drop-shadow” on png with inset

Ok I can add shadows to transparent pngs with this: .drop-shadow { -webkit-filter: drop-shadow (0 1px 2px rgba(0,0,0,.5)); -moz-filter: drop-shadow (0 1px 2px rgba(0,0,0,.5)); -ms-filter: ...
3
votes
1answer
272 views

Drop shadow not showing up for TextView

I've tried the following code but the drop shadow will not show up, it just appears as regular white text. TextView newsTitle = new TextView(mCtx); newsTitle.setText(newsitems[position].getTitle()); ...
0
votes
0answers
91 views

systemdropshadowchrome for halo effect

I have a listview where each row is a data template and in each data template I have around 15 controls. I have applied the DropShadowEffect to these controls on mouse over and keyboard focus within ...
1
vote
0answers
181 views

Aero drop - shadow on a borderless form?

I tried the following code to override the CreateParams. protected: virtual property System::Windows::Forms::CreateParams^ CreateParams { System::Windows::Forms::CreateParams^ get() ...
0
votes
3answers
146 views

can't get rid of top and bottom drop shadows

Why with the following code, I still can't get rid of drop shadows at the top and bottom. Although the drop shadows are "small", yet still they are there. div#inner_container { width: 960px; ...
6
votes
3answers
1k views

Best way to do this kind of drop shadow?

I have a site that will have a column of images and divs (a mix of both) that will always be the same size. On all of these I want to add a certain kind of drop shadow (as seen here): I've worked ...
1
vote
0answers
167 views

Jquery Dropshadow on relative (height 80%) div element?

anybody knows if there is any form of autoReinitialise on jquery.dropshadow.js? I created a div with 80% height, and the shadow is nice. However whenever you resize the page and hence the div resizes ...
2
votes
5answers
2k views

How can I not show a css drop shadow on ie6?

I want to know if I can ignore my css drop shadow on ie6 without using conditional statements to filter the css. here is my current css: /* Drop shadow */ -ms-filter: ...
0
votes
1answer
392 views

How to add a one pixel drop shadow around main nav link along with the entire sub-nav dropdown?

I am using drop-down menus with my main navigation links and need to add a one pixel drop-shadow around everything (the current nav button/link (that has rounded corners using border-radius) and the ...
6
votes
2answers
6k views

Drop shadow in Winforms Controls?

is there a way to add a drop shadow to controls? are there any controls out there with this feature?
1
vote
2answers
3k views

How can I remove drop shadow from TextInput?

I have a style sheet in my Flex Application, referenced as: <mx:Style source="/assets/stylesheets/default.css" /> In this style sheet, I set dropShadowEnabled to true gloablly: global { ...