198261
05-29-2005, 06:27 PM
On my userlookup i want to get rid of my sidebar any tips? I tried but the time and ads wont go away.
|
View Full Version : How can I get rid of my sidebar? 198261 05-29-2005, 06:27 PM On my userlookup i want to get rid of my sidebar any tips? I tried but the time and ads wont go away. Beths 05-29-2005, 06:52 PM try this code <style> #n{display: none;} table, td {background: transparent;} img {filter:alpha(opacity=0);} p img {filter:none alpha(opacity=100) chroma(color=white);} </style> lisatrox 05-30-2005, 05:40 AM Here's another code to remove your sidebar: <style type="text/css"> #n { background: transparent; } p img { filter: chroma(color=white); } img { filter: alpha(opacity=0); } td, table { background: transparent; } </style> This should also remove the clock and ads. |