![]() |
|
transparency in themes - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: Themes (https://forum.zenphoto.org/forum-5.html) +--- Thread: transparency in themes (/thread-986.html) |
transparency in themes - daenney - 27-12-2006 Hey guys Now I have a little thing, I added transparency to the CSS of the default-dark theme in the #main but now it causes thumbs and previews to become transparent too which obviously is not what you want. To get an idea of what's going on http://screenshots.daenney.net will probably clear things up for you :P The CSS code for transparency is this (in my case): transparency in themes - thinkdreams - 27-12-2006 Firebug. Darn that's a good Firefox plugin. Anyway, using Firebug, I inspected your CSS. Your applied the above CSS to your #main div as you stated, which will cause anything in that DIV to become transparent, as it will be inherited by classes below it. I didn't see any additional references to opacity in the imagethumb, img, or image tags, so that would lead me to why it's inheriting the css from #main. You could try 100 opacity for each of the image CSS selectors to see if that doesn't correct your issue. I'm assuming you want everything slightly transparent with the exception of images and thumbs right? transparency in themes - daenney - 27-12-2006 Yup you got that right transparency in themes - daenney - 27-12-2006 Oke done, added the opacity override but it doesn't fix the issue, go ahead and have a look, maybe you can figure out what the heck is going on opacity: 1; |