vForums Support > Programming & Coding :: Code Requests & Support :: > transparent welcometable background.

transparent welcometable background. - Posted By RuhRoe (mezorro) on 22nd Jul 08 at 9:49pm
I am working on a skin for my forum and I was wondering if I could get a code that made the welcome table background transparent instead of having to have a color? Thanks to whoever does it {Grin}

Re: transparent welcometable background. - Posted By Ross (admin) on 22nd Jul 08 at 9:57pm
For both the welcome table & user bar:

Code:
 
  1. <style type="text/css">
  2. <!--
  3. #welcome_table, #user_table, .welcome, .menu {
  4. background-color: transparent;
  5. background-image: none;
  6. }
  7. -->
  8. </style>
 


Or just for the welcome table:

Code:
 
  1. <style type="text/css">
  2. <!--
  3. #welcome_table, .welcome, #welcome_table .menu {
  4. background-color: transparent;
  5. background-image: none;
  6. }
  7. -->
  8. </style>
 


Either would go in the global header {Smile}

Re: transparent welcometable background. - Posted By RuhRoe (mezorro) on 23rd Jul 08 at 12:05pm
Thanks ross {Smile}