View Full Version : Couple questions about changing style on VB3
BruZZi
01-27-2005, 03:19 AM
1) How can I increase the font size of the Thread's title ??? Also I want to make it bold.
2) Is there a way to hide/remove the "QUOTE" Button ???
3) How can i change the threads sort order from descending to ascending ???
I want the ascending to be default.
Andreas
01-27-2005, 03:30 AM
1) Where exactly?
2) Edit template postbit
3) You mean the sort order in forumdisplay?
Either install one of the hacks that allows you to specify sort column and order for each forum, -- OR --
In forumdisplay.php FIND
// look at sorting options:
if ($sortorder != 'asc')
{
$sqlsortorder = 'DESC';
$order = array('desc' => HTML_SELECTED);
}
else
{
$sqlsortorder = '';
$order = array('asc' => HTML_SELECTED);
}
REPLACE that with
// look at sorting options:
if ($sortorder != 'desc')
{
$sqlsortorder = 'ASC';
$order = array('asc' => HTML_SELECTED);
}
else
{
$sqlsortorder = '';
$order = array('desc' => HTML_SELECTED);
}
BruZZi
01-27-2005, 11:36 PM
1) Where exactly?
2) Edit template postbit
3) You mean the sort order in forumdisplay?
1) The title shown on the top of the posts:
Couple questions about changing style on VB3 <---- This one :)
_____________________________________________
1) How can I increase the font size of the Thread's title ??? Also I want to make it bold.
2) Is there a way to hide/remove the "QUOTE" Button ???
3) How can i change the threads sort order from descending to ascending ???
I want the ascending to be default.
2) Thanks.
3) Yup. That's it. :D
Thanks so much. :)
.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.