LOTRchick
04-07-2003, 02:43 AM
okay, i asked a livejournal question before and i have another one. it has to do with css. can someone help me align the page to the left, like me the code, and also to make the table transparent.
thanks
thanks
|
View Full Version : please help! LOTRchick 04-07-2003, 02:43 AM okay, i asked a livejournal question before and i have another one. it has to do with css. can someone help me align the page to the left, like me the code, and also to make the table transparent. thanks zangerbanger 04-07-2003, 03:47 AM To make a table transparent you go like this: <table width="#" height="#" border="#" cellspacing="#" cellpadding="#" style="filter:alpha(opacity=#)"> <tr> <td> CONTENT </td> </tr> </table> Xiphias 04-07-2003, 09:10 PM to align the whole table to the left with transparency enabled, use the following code: <table align="left" width="#" height="#" border="#" cellspacing="#" cellpadding="#" style="filter:alpha(opacity=# )"> <tr> <td> CONTENT </td> </tr> </table> |