How do u make textbox, pictures transparent? |
How do u make textbox, pictures transparent? |
![]()
Post
#1
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 35 Joined: Feb 2004 Member No: 4,587 ![]() |
|
|
|
![]() |
![]()
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. |
|
|
![]() ![]() |