I have Webuilder 2010 and I am seeing that it doesn't know about image opacity or I haven't found anything in there that it does. I have found code on the W3schools site that looks like this. I am wondering if it really is in Webuilder 2010 and I just have missed it? When I am looking at the CSS code it has the word filter in red so I am guessing that it doesn't know about that.
<img src="klematis.jpg" width="150" height="113" alt="klematis"
style="opacity:0.4;filter:alpha(opacity=40)" />
Firefox uses the property opacity:x for transparency, while IE uses filter:alpha(opacity=x).
Tip: The CSS3 syntax for transparency is opacity:x.
In Firefox (opacity:x) x can be a value from 0.0 - 1.0. A lower value makes the element more transparent.
In IE (filter:alpha(opacity=x)) x can be a value from 0 - 100. A lower value makes the element more transparent.
This is how my code looks like in Webuilder 2010
.podContentLeftHighlight {
left:0;
width:20px;
background:#cef;
opacity:.07;
filter:alpha(opacity=7);
}
CSS image opacity
Moderator: kfury77
Forum rules
Please try to follow these guidelines. This will help to receive faster and more accurate response.
Please try to follow these guidelines. This will help to receive faster and more accurate response.
- Check the Support section of the corresponding product first. Chances are you will find your answer there;
- Do not create new topics for already reported problems. Add your comments to the existing topics instead;
- Create separate topic for each problem request. Do NOT post a number of non-related problem reports in a single topic;
- Give your topic a meaningful title. Titles such as "A question," "Bug report" and "Help!" provide others no clue what your message is about;
- Include the version number of the software you are using;
- This is not an official customer support helpdesk. If you need a prompt and official response, please contact our support team directly instead. It may take a while until you receive a reply in the forum;
Re: CSS image opacity
Depends on which CSS Language Specification you have selected. Look at the top of your Inspector when inspecting css. If you have it set for CSS 3, only filter will be read. If it's set for CSS 2.1 or less, both filter and opacity will be red. If you set it for IE, opacity will be red.