Topic: Hide : Posted by 'username' text in forum titles.

I don't want to display it as it takes too much place.
Thx in advance, i need it!

A new poker community is rising : see for yourselft at unbluffed.com

Re: Hide : Posted by 'username' text in forum titles.

Look in viewforum.php smile

3

Re: Hide : Posted by 'username' text in forum titles.

#vf td.tcl span.byuser {
  height: 0;
  position: absolute;
  left: -10000px
  }

Or if that gives you problems

#vf td.tcl span.byuser {
  display: none;
  }

Re: Hide : Posted by 'username' text in forum titles.

Paul wrote:

#vf td.tcl span.byuser {
  height: 0;
  position: absolute;
  left: -10000px
  }

Or if that gives you problems

#vf td.tcl span.byuser {
  display: none;
  }

Nice.  This way I won't alter the viewforum.php cod big_smile

To which .css file do I add this div ?

A new poker community is rising : see for yourselft at unbluffed.com

5

Re: Hide : Posted by 'username' text in forum titles.

If you add it to base.css then it will cover all the styles.