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. |
|
|
![]()
Post
#3
|
|
![]() Member ![]() ![]() Group: Member Posts: 21 Joined: Feb 2004 Member No: 4,553 ![]() |
thanks!
|
|
|
![]()
Post
#4
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 35 Joined: Feb 2004 Member No: 4,587 ![]() |
thanx a lot but I'm really lost in html so could u tell me where to put this code, I can't get it to work.
|
|
|
![]()
Post
#5
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 122 Joined: Jan 2004 Member No: 199 ![]() |
i think you can put it anywhere.. but try in the custom header.
and i may be wrong but i think you need style tags around it... so it would be CODE <!-- begin code provided by createblog.com --> <style type="text/css"> div.blogheader, .caption, table.left, table.blogbody, table.search TD, table.search, table.announcements, table.search TD, table.announcements TH { filter:alpha(opacity=50); } </style> <!-- end code provided by createblog.com --> i may be wrong but just tryin to help |
|
|
![]()
Post
#6
|
|
![]() wanderlust personified. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 7,515 Joined: Jan 2004 Member No: 797 ![]() |
oh, i said to put it in your css code, meaning add it to your style sheets... meaning, put it with the rest of the stuff that's between your <style> codes...
|
|
|
![]()
Post
#7
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 35 Joined: Feb 2004 Member No: 4,587 ![]() |
ok i have a problem. The code works but my left side module keeps dissapearing and i can't get to look & feel when that happens. Is their a way to stop that from happening?
|
|
|
![]() ![]() |