• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

CSS question...

Entity

Lifer
Is there a way to do something similar to http://www.pcthike.com/test.gif this with CSS, relying on opacity instead of making two different images? The drop shadow isn't necessary; I'd probably just do a border around it, but I'm wondering if it is possible, or if you have to use two separate images.

Rob
 
Sure, but AFAIK it will only work in IE and mozilla.

Put this in your css:

filter: alpha(opacity=70);
filter: progid😀XImageTransform.Microsoft.Alpha(opacity=70);
-moz-opacity: 70%;

A bit too hacky for my tastes, but if gecko and IE are all you're worried about, it should be ok.

edit: hehe, it put a smilie there... hit quote to get the real text.
 
Back
Top