![]() |
|
|
|||||||
![]() |
HTML - using css to create transparent table |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Posts: n/a
|
I am attempting to create a table that has a semi transparent
background, but has words and pictures inside, that are not transparent. either way, if i place the words directly into the table or create a table within the transparent one, the css style is inherited and everything becomes transparent. can i accomplish what i want using html? |
|
|
|
#2 |
|
Posts: n/a
|
schreef:
> I am attempting to create a table that has a semi transparent > background, but has words and pictures inside, that are not > transparent. either way, if i place the words directly into the table > or create a table within the transparent one, the css style is > inherited and everything becomes transparent. can i accomplish what i > want using html? Hi John, I am not quite sure what you are trying to achieve. Best would be to place an example or at least a drawing online. Could it be something like this: http://vision2form.nl/Temp/tabel-transparent.html -- Website Design: http://vision2form.nl/websitedesign/ Being found: http://vision2form.nl/websitedesign/being-found.html Css templates: http://vision2form.nl/websitedesign/css-templates.html |
|
|
|
#3 |
|
Posts: n/a
|
here's an example
www.recycler.dyndns.org the text that reads "this is a test" needs to be solid, not opaque. i'm using Alpha(opacity=50) to control the table below it. use ie to view this page, i haven't fixed it for firefox, yet tonnie wrote: > schreef: > > I am attempting to create a table that has a semi transparent > > background, but has words and pictures inside, that are not > > transparent. either way, if i place the words directly into the table > > or create a table within the transparent one, the css style is > > inherited and everything becomes transparent. can i accomplish what i > > want using html? > > Hi John, > > I am not quite sure what you are trying to achieve. Best would be to > place an example or at least a drawing online. > > Could it be something like this: > > http://vision2form.nl/Temp/tabel-transparent.html > > > > > > -- > Website Design: http://vision2form.nl/websitedesign/ > Being found: http://vision2form.nl/websitedesign/being-found.html > Css templates: http://vision2form.nl/websitedesign/css-templates.html |
|
|
|
#4 |
|
Posts: n/a
|
schreef:
[restored topposting] > tonnie wrote: >> schreef: >>> I am attempting to create a table that has a semi transparent >>> background, but has words and pictures inside, that are not >>> transparent. either way, if i place the words directly into the table >>> or create a table within the transparent one, the css style is >>> inherited and everything becomes transparent. can i accomplish what i >>> want using html? >> Hi John, >> >> I am not quite sure what you are trying to achieve. Best would be to >> place an example or at least a drawing online. >> >> Could it be something like this: >> >> http://vision2form.nl/Temp/tabel-transparent.html > here's an example > www.recycler.dyndns.org > > the text that reads "this is a test" needs to be solid, not opaque. i'm > using Alpha(opacity=50) to control the table below it. > > use ie to view this page, i haven't fixed it for firefox, yet What if you would change the background for class 2 to transparent and left out the filter? -- Website Design: http://vision2form.nl/websitedesign/ Being found: http://vision2form.nl/websitedesign/being-found.html Css templates: http://vision2form.nl/websitedesign/css-templates.html |
|
|
|
#5 |
|
Posts: n/a
|
i just started doing this stuff... you are going to have to hold my
hand a little. explain that so a noob can understand. tonnie wrote: > schreef: > [restored topposting] > > tonnie wrote: > >> schreef: > >>> I am attempting to create a table that has a semi transparent > >>> background, but has words and pictures inside, that are not > >>> transparent. either way, if i place the words directly into the table > >>> or create a table within the transparent one, the css style is > >>> inherited and everything becomes transparent. can i accomplish what i > >>> want using html? > >> Hi John, > >> > >> I am not quite sure what you are trying to achieve. Best would be to > >> place an example or at least a drawing online. > >> > >> Could it be something like this: > >> > >> http://vision2form.nl/Temp/tabel-transparent.html > > > here's an example > > www.recycler.dyndns.org > > > > the text that reads "this is a test" needs to be solid, not opaque. i'm > > using Alpha(opacity=50) to control the table below it. > > > > use ie to view this page, i haven't fixed it for firefox, yet > > What if you would change the background for class 2 to transparent and > left out the filter? > > > -- > Website Design: http://vision2form.nl/websitedesign/ > Being found: http://vision2form.nl/websitedesign/being-found.html > Css templates: http://vision2form.nl/websitedesign/css-templates.html |
|
|
|
#6 |
|
Posts: n/a
|
schreef:
> i just started doing this stuff... you are going to have to hold my > hand a little. > explain that so a noob can understand. > > tonnie wrote: >> schreef: >> [restored topposting] >>> tonnie wrote: >>>> schreef: >>>>> I am attempting to create a table that has a semi transparent >>>>> background, but has words and pictures inside, that are not >>>>> transparent. either way, if i place the words directly into the table >>>>> or create a table within the transparent one, the css style is >>>>> inherited and everything becomes transparent. can i accomplish what i >>>>> want using html? >>>> Hi John, >>>> >>>> I am not quite sure what you are trying to achieve. Best would be to >>>> place an example or at least a drawing online. >>>> >>>> Could it be something like this: >>>> >>>> http://vision2form.nl/Temp/tabel-transparent.html >> > here's an example >> > www.recycler.dyndns.org >> > >> > the text that reads "this is a test" needs to be solid, not opaque. i'm >> > using Alpha(opacity=50) to control the table below it. >> > >> > use ie to view this page, i haven't fixed it for firefox, yet >> >> What if you would change the background for class 2 to transparent and >> left out the filter? You made a class ( .2 ) .2 { cursor: auto; background-color: #000000; font-family: "Century Gothic"; font-size: 16px; font-style: normal; font-weight: bold; font-variant: normal; color: #00FF00; filter: Alpha(Opacity=100); } The table containing "this is a test" has this class. My sugestion was to alter the background into transparent and get rid of the declaration filter: ... So it would look like: ..2 { background: transparent; font-family: "Century Gothic"; font-size: 16px; font-weight: bold; color: #0F0; } (stripped some) Didn't test it, so i don't know if this is working or even giving you the effect wanted. Note: Mozilla does not support filter i believe it is something like: MozOpacity=opacity/100 -- Website Design: http://vision2form.nl/websitedesign/ Being found: http://vision2form.nl/websitedesign/being-found.html Css templates: http://vision2form.nl/websitedesign/css-templates.html |
|
|
|
#7 |
|
Posts: n/a
|
tonnie wrote:
> schreef: >> i just started doing this stuff... you are going to have to hold my >> hand a little. >> explain that so a noob can understand. >> >> tonnie wrote: >>> schreef: >>> [restored topposting] >>>> tonnie wrote: >>>>> schreef: >>>>>> I am attempting to create a table that has a semi transparent >>>>>> background, but has words and pictures inside, that are not >>>>>> transparent. either way, if i place the words directly into the table >>>>>> or create a table within the transparent one, the css style is >>>>>> inherited and everything becomes transparent. can i accomplish what i >>>>>> want using html? >>>>> Hi John, >>>>> >>>>> I am not quite sure what you are trying to achieve. Best would be to >>>>> place an example or at least a drawing online. >>>>> >>>>> Could it be something like this: >>>>> >>>>> http://vision2form.nl/Temp/tabel-transparent.html >>> > here's an example >>> > www.recycler.dyndns.org >>> > >>> > the text that reads "this is a test" needs to be solid, not >>> opaque. i'm >>> > using Alpha(opacity=50) to control the table below it. >>> > >>> > use ie to view this page, i haven't fixed it for firefox, yet >>> >>> What if you would change the background for class 2 to transparent and >>> left out the filter? > > You made a class ( .2 ) > > .2 { > cursor: auto; <snip> Regardless what you do with your CSS this will not work because of a very basic error, class identifiers can *not* begin with a numeral, must be alpha. http://www.w3.org/TR/CSS21/syndata.html#q6 ..2 is invalid ..2Class is invalid ..class2 is valid ..this2that is valid -- Take care, Jonathan ------------------- LITTLE WORKS STUDIO http://www.LittleWorksStudio.com |
|
|
|
#8 |
|
Posts: n/a
|
Jonathan N. Little schreef:
> tonnie wrote: >> schreef: >>> i just started doing this stuff... you are going to have to hold my >>> hand a little. >>> explain that so a noob can understand. >>> >>> tonnie wrote: >>>> schreef: >>>> [restored topposting] >>>>> tonnie wrote: >>>>>> schreef: >>>>>>> I am attempting to create a table that has a semi transparent >>>>>>> background, but has words and pictures inside, that are not >>>>>>> transparent. either way, if i place the words directly into the >>>>>>> table >>>>>>> or create a table within the transparent one, the css style is >>>>>>> inherited and everything becomes transparent. can i accomplish >>>>>>> what i >>>>>>> want using html? >>>>>> Hi John, >>>>>> >>>>>> I am not quite sure what you are trying to achieve. Best would be to >>>>>> place an example or at least a drawing online. >>>>>> >>>>>> Could it be something like this: >>>>>> >>>>>> http://vision2form.nl/Temp/tabel-transparent.html >>>> > here's an example >>>> > www.recycler.dyndns.org >>>> > >>>> > the text that reads "this is a test" needs to be solid, not >>>> opaque. i'm >>>> > using Alpha(opacity=50) to control the table below it. >>>> > >>>> > use ie to view this page, i haven't fixed it for firefox, yet >>>> >>>> What if you would change the background for class 2 to transparent and >>>> left out the filter? >> >> You made a class ( .2 ) >> >> .2 { >> cursor: auto; > > <snip> > > Regardless what you do with your CSS this will not work because of a > very basic error, class identifiers can *not* begin with a numeral, must > be alpha. > > http://www.w3.org/TR/CSS21/syndata.html#q6 > > .2 is invalid > .2Class is invalid > .class2 is valid > .this2that is valid Yes you are right, they should. As it worked though in as well IE as Moz i simpley didn't notice it. -- Website Design: http://vision2form.nl/websitedesign/ Being found: http://vision2form.nl/websitedesign/being-found.html Css templates: http://vision2form.nl/websitedesign/css-templates.html |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to burn copy CD/DVD and create Data/Audio/Video Disc? | dvdloveri | Software | 6 | 07-27-2009 06:58 AM |
| Need help working with Ado | personaje | Software | 2 | 12-29-2008 03:05 PM |
| how to create os image in same drive using symantech ghost 11. | manojgj | Hardware | 0 | 02-28-2008 07:47 AM |
| High-Def Playback: The Firmware Gotcha | Ablang | DVD Video | 46 | 07-28-2007 06:25 AM |
| How to store dataset to a table in the database. Please be specific. Urgent | fullblown | General Help Related Topics | 0 | 09-20-2006 02:55 PM |