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!
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → 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!
Look in viewforum.php
#vf td.tcl span.byuser {
height: 0;
position: absolute;
left: -10000px
}
Or if that gives you problems
#vf td.tcl span.byuser {
display: none;
}
#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
To which .css file do I add this div ?
If you add it to base.css then it will cover all the styles.
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → Hide : Posted by 'username' text in forum titles.
Powered by PunBB, supported by Informer Technologies, Inc.