Ask a Question related to Dreamweaver AppDev, Design and Development.
-
cadenceguitar #1
CSS Filter
I can't seem to get my alpha filter to render in firefox, but it does fine in
IE. Anyone know what's up with this, i've been working with CSS for a while and
this is the first time I've run into it?
here's a preview of the page:
[url]http://www.nr.edu/preview/working[/url]
thanks guys,
Tim
cadenceguitar Guest
-
about filter
hello, In PDF file,<</Length 120/Filter/FlateDecode/I 144/L 128/S 40/V 106>> ,what does "I,L,V" mean? what the different between "<</Length... -
#40499 [NEW]: filter sapi does not register any highlightning filter
From: php at henke37 dot cjb dot net Operating system: any PHP version: 6CVS-2007-02-15 (CVS) PHP Bug Type: Apache2 related... -
Data Grid Header Filter Renderer or how do I get aheader to filter the data in a datagrid.
Okay so on the same theme as why isn't the datagrid like Excel, I have created a (very cool) Filter header. 1) The filter looks like any other... -
Fog Filter
Is it possible to add fog to a picture? I am using PS Elements 2. Thanks Arnold -
Filter
hello sir, i have a form which has a subform1 and the subform1 has subform2 i am able to filter main form for a particular number of feilds... -
Murray *TMM* #2
Re: CSS Filter
See DW forum - they aren't supported except by IE.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"cadenceguitar" <webforumsuser@macromedia.com> wrote in message
news:d19mu4$r7c$1@forums.macromedia.com...>I can't seem to get my alpha filter to render in firefox, but it does fine
>in
> IE. Anyone know what's up with this, i've been working with CSS for a
> while and
> this is the first time I've run into it?
>
> here's a preview of the page:
> [url]http://www.nr.edu/preview/working[/url]
>
> thanks guys,
> Tim
>
Murray *TMM* Guest
-
Sneelock #3
Re: CSS Filter
Hi Tim,
Here is some css with the filters working in both IE and FF.
You will have to add your own image to the code for this example to work.
Jon
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
<!--
#bg {
width:600px;
height:300px;
background:url(img/circles1.gif);
background-repeat:no-repeat;
background-position: 50% 50%;
margin:25px auto;}
#transbox {
width: 300px;
margin: 50% auto;
background-color: #999;
filter:alpha(opacity=50);
-moz-opacity:0.5;
opacity: 0.5;
text-align:center;}
#transbox * {
position: relative;
}
#transbox div {
padding: 20px;
color: #000;}
body {
background-color: #666666;
font-family:Geneva, Arial, Helvetica, sans-serif;}
-->
</style>
</head>
<body>
<div id="bg">
<div id="transbox">
<div>
<p>50% Lorem <a href="#"; return false>ipsumdolor</a> sit amet,
consectetuer adipiscing etc. etc.</p>
</div>
</div>
</div>
</body>
</html>
Sneelock Guest
-



Reply With Quote

