inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Opacity
Dec 16, 2012 9:31:34 GMT -8
Post by aRMY83 on Dec 16, 2012 9:31:34 GMT -8
This works just fine (Global Header) with IE but not with FF: (have not tried it in any other browsers)
<body style="filter: alpha (opacity=50)">
army83.freemessageboards.com/
Would appreciate any assistance on this one.
|
|
inherit
126477
0
Apr 21, 2023 15:18:52 GMT -8
Shrike
Re-appeared briefly after 6 years only to no doubt disappear again.
1,569
June 2008
shrike
|
Opacity
Dec 16, 2012 12:48:35 GMT -8
Post by Shrike on Dec 16, 2012 12:48:35 GMT -8
You'd need to use the proper opacity property to get it to work in all browsers (for IE, only version 9+). What is it you're trying to get done? I've done something similar here and here (going to work on the second one later tonight), are those along the lines of what you want?
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Opacity
Dec 16, 2012 13:11:08 GMT -8
Post by aRMY83 on Dec 16, 2012 13:11:08 GMT -8
Hello Shrike... During all US holidays, I use the opacity (default skin / theme) background as show above and here: v4.5so that everyone can see that holiday background completely.
|
|
inherit
154088
0
Jan 6, 2014 7:13:23 GMT -8
Liz
499
May 2010
frenchliving
|
Opacity
Dec 16, 2012 14:31:45 GMT -8
Post by Liz on Dec 16, 2012 14:31:45 GMT -8
It works perfectly in Chrome!
Nice website btw!
|
|
inherit
First Contributor
66253
0
Mar 18, 2024 11:09:20 GMT -8
aRMY83
2,925
December 2005
army83
|
Opacity
Dec 16, 2012 14:42:29 GMT -8
Post by aRMY83 on Dec 16, 2012 14:42:29 GMT -8
It works perfectly in Chrome! Nice website btw! Thanks Liz and I just figured out how it will work in FF with a mod from Pebble months ago. Had to rearrange it, and now it works just fine: <body style="opacity:0.8; /* For FireFox etc 1.0 = no opacity : 0.1 = total opacity */ filter:alpha(opacity=80); /* For IE 1-100 : 100 = no opacity 1 = total */">
|
|
Former Member
inherit
guest@proboards.com
164531
0
Nov 29, 2024 13:08:58 GMT -8
Former Member
0
January 1970
Former Member
|
Opacity
Dec 28, 2012 22:23:02 GMT -8
Post by Former Member on Dec 28, 2012 22:23:02 GMT -8
Am I missing something? I just made images that were semi transparent and used them on my forum. Didn't use any code at all tct.freemessageboards.com
|
|
inherit
126477
0
Apr 21, 2023 15:18:52 GMT -8
Shrike
Re-appeared briefly after 6 years only to no doubt disappear again.
1,569
June 2008
shrike
|
Opacity
Dec 29, 2012 4:35:22 GMT -8
Post by Shrike on Dec 29, 2012 4:35:22 GMT -8
Am I missing something? I just made images that were semi transparent and used them on my forum. Didn't use any code at all tct.freemessageboards.com While using images works, it is much faster to have a browser natively do it. Using an image means that the browser will have to make a request to the server for that image, download it (or read it from the browser cache) and then render it. The first two steps there take (comparatively) a lot more time. There's also the fact that, with an image, you have to edit the image and re-upload it whereas with CSS, you just edit some text.
|
|
Former Member
inherit
guest@proboards.com
164531
0
Nov 29, 2024 13:08:58 GMT -8
Former Member
0
January 1970
Former Member
|
Opacity
Dec 29, 2012 12:12:48 GMT -8
Post by Former Member on Dec 29, 2012 12:12:48 GMT -8
Ahhhh. I see
|
|