<?xml version="1.0"?>
<rss version="2.0">
 <channel>
  <title>CSS and Transparency | WPDFD.com Forums</title>
  <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/</link>
  <description>A Layout forum thread at WPDFD.com</description>
  <language>en-us</language>
  <pubDate>02/13/04, 044 20 2004 2004:%i:1076689216 11:20:16</pubDate>
  <lastBuildDate>06/07/13, 158 08 2013 2013:%i:1370578107 00:08:27</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>NineLabs Framework Feed Generator</generator>
  <managingEditor>sitemaster@wpdfd.com</managingEditor>
  <webMaster>sitemaster@wpdfd.com</webMaster>
     <item>
    <title>Mrblack  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p411</link>
    <description><![CDATA[I have an imagemap that, when the user click's on an area, a box pops up over the map which includes some links, like a little menu.<br /><br />I'm able to get this working with a couple of div's but I'd like the pop-up menu's box to appear transulcent (so you can see the imagemap through the menu).<br /><br />Is there something CSS that I can use to do this easily or do I need to do something tricky like use a modified version of the background graphic in my menu?]]></description>
    <pubDate>02/13/04, 044 20 2004 2004:%i:1076689216 11:20:16</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p411</guid>
   </item>
     <item>
    <title>Joe Gillespie said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p412</link>
    <description><![CDATA[There is very poor support for transparency in browser. Mozilla has one system, Explorer another, other browsers don't.<br /><br />One way to fake it is to use a GIF with a transparent checker pattern as the menu box's background. It works (visually) in some instance better than others depending on what is behind it.<br /><br />You could also experiment with using a PNG(24), but browser support for transparency in PNGs is sketchy too.]]></description>
    <pubDate>02/13/04, 044 20 2004 2004:%i:1076692834 12:20:34</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p412</guid>
   </item>
     <item>
    <title>Baxter  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p413</link>
    <description><![CDATA[Both major browsers have proprietary versions of this. The good news is that each completely ignores the other.<br />In IE, the css command is:<br />filter:alpha(opacity=80);<br /><br />With 80 being the percentage of opacity.<br /><br />In gecko-based browsers, the same command is<br />-moz-opacity:0.8;<br /><br />It actually works pretty well, unless you have a lot of text in the transparent area, or a fair bit of dynamic text, in which case it can slow the page to a crawl. Also, be aware that anything in the div will also affected, so any images, text, whatever, will also inherit the transparency/opacity value.]]></description>
    <pubDate>02/13/04, 044 50 2004 2004:%i:1076694647 12:50:47</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p413</guid>
   </item>
     <item>
    <title>Mrblack  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p414</link>
    <description><![CDATA[That is exactly what I was looking for, something that is cool on browsers that supprot it but doesn't break anything on ones that don't, and requires very little effort!<br /><br />Thanks guys!]]></description>
    <pubDate>02/13/04, 044 19 2004 2004:%i:1076707190 16:19:50</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p414</guid>
   </item>
     <item>
    <title>Baxter  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p415</link>
    <description><![CDATA[I forgot to mention... to get around the stuff in the box being translucent, here's what you do... say the box id is &quot;box&quot; in the style sheet, set the translucency on #box, then set a second rule for #box * {and reset the transparency to 100%}<br />The wildcard will select everything within the box and put it back to 100%translucency, when you give it the rule to do so.]]></description>
    <pubDate>02/14/04, 045 39 2004 2004:%i:1076737174 00:39:34</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p415</guid>
   </item>
     <item>
    <title>Jdenny  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p416</link>
    <description><![CDATA[I like this and it seems to work,<br /><br />years ago I was using it on IE, but never really found a good use, although now I have more layout control it can be used for cool effects!<br /><br />Is there no CSS background-opacity property?<br />Probably not but there should be!]]></description>
    <pubDate>02/14/04, 045 46 2004 2004:%i:1076813177 21:46:17</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p416</guid>
   </item>
     <item>
    <title>Mrblack  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p417</link>
    <description><![CDATA[I wanted to note that while I was able to get this working in IE I couldn't get it working in Mozilla (even with the gecko code posted); not that it was a big deal because when I looked at my page in Mozilla it was murdered anyway...<br /><br />...I guess I have some work to do before I worry about the fancy stuff...<br /><br />Thanks again for the info!]]></description>
    <pubDate>02/19/04, 050 47 2004 2004:%i:1077202039 09:47:19</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p417</guid>
   </item>
     <item>
    <title>Baxter  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p418</link>
    <description><![CDATA[Post a link to your stylesheet / page. <br /><br />Also, validate your css. If it's not working in Moz, generally speaking there's something wrong with it.]]></description>
    <pubDate>02/19/04, 050 46 2004 2004:%i:1077205588 10:46:28</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p418</guid>
   </item>
     <item>
    <title>Mrblack  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p419</link>
    <description><![CDATA[I'm sure it's my fault, I was doing all my &quot;previewing&quot; in IE and I'm sure I used some tags that only it understands.<br /><br />I'd post a link but the site is for a rigged demo and isn't avaliable on the public internet. &nbsp;The demo is in IE so it will do for now...]]></description>
    <pubDate>02/19/04, 050 57 2004 2004:%i:1077206277 10:57:57</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p419</guid>
   </item>
     <item>
    <title>Bobert  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p420</link>
    <description><![CDATA[I'm not sure if this is true or not, but I remember reading somewhere that -moz-opacity: blah; only works on text. &nbsp;???<br /><br />Btw, I like this forum. It is filled with intellegent and opinionated people. <img src="/images/emoticons/biggrin.png" class="smiley" />]]></description>
    <pubDate>02/19/04, 050 12 2004 2004:%i:1077221562 15:12:42</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p420</guid>
   </item>
     <item>
    <title>Jdenny  said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p421</link>
    <description><![CDATA[yeah good forum - let's hope it doesn't get <i>too</i> popular!<br /><br />only works on text? - well posibly but....<br /><br />... most of the [tt]-moz-[/tt] css stuff is things that are planned for future CSS versions, and [tt]opacity[/tt] is propably going to be in CSS-3, so I would expect it to work as per the spec - the opacity for the <i>whole</i> of the block]]></description>
    <pubDate>02/20/04, 051 58 2004 2004:%i:1077303503 13:58:23</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p421</guid>
   </item>
     <item>
    <title>Sabri Dino said:</title>
    <link>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p3086</link>
    <description><![CDATA[<a href="http://www.yerindeegitim.com"> yerinde köpek egitimi</a><br />
<a href="http://www.askkervani.com">arkadaşlık siteleri</a><br />
<a href="http://www.internetce.net">Web tasarımı</a><br />
<a href="http://www.partneriniz.net"> istanbul eskort</a><br />
<a href="http://www.bayaneskort.tk"> bayaneskort</a><br />
]]></description>
    <pubDate>10/28/09, 301 49 2009 2009:%i:1256716187 03:49:47</pubDate>
    <guid>http://www.wpdfd.com/forums/wpdfd/layout/css_and_transparency/#p3086</guid>
   </item>
   </channel>
</rss