Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. #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...
    3. 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...
    4. Fog Filter
      Is it possible to add fog to a picture? I am using PS Elements 2. Thanks Arnold
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default Re: CSS Filter

    hey jon,
    thanks a ton, that worked like a charm

    -tim
    TCWright12 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139