How do u make textbox, pictures transparent? |
How do u make textbox, pictures transparent? |
Feb 19 2004, 04:33 AM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 35 Joined: Feb 2004 Member No: 4,587 |
|
|
|
|
![]() |
Feb 19 2004, 09:43 AM
Post
#2
|
|
![]() wanderlust personified. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 7,515 Joined: Jan 2004 Member No: 797 |
use the "alpha filter" in your css. here's the code to make all of your tables semi-transparent:
CODE <!-- begin code provided by createblog.com --> div.blogheader, .caption, table.left, table.blogbody, table.search TD, table.search, table.announcements, table.search TD, table.announcements TH { filter:alpha(opacity=50); } <!-- end code provided by createblog.com --> and for images: CODE <!-- begin code provided by createblog.com --> img{ filter:alpha(opacity=50); } <!-- end code provided by createblog.com --> you can change the opacity to any number you wish, between 0 - 100. Of course, the lower the number is, the more transparent it becomes. |
|
|
|
Bigevil How do u make textbox, pictures transparent? Feb 19 2004, 04:33 AM
drewster thanks! Feb 19 2004, 12:23 PM
Bigevil thanx a lot but I'm really lost in html so cou... Feb 19 2004, 04:56 PM
dmbrocks923 i think you can put it anywhere.. but try in the c... Feb 19 2004, 06:55 PM
xquizit oh, i said to put it in your css code, meaning add... Feb 19 2004, 08:44 PM
Bigevil ok i have a problem. The code works but my left si... Feb 19 2004, 10:39 PM![]() ![]() |