Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Hot Tags Font size


chrishajer
Participant

@chrishajer

http://blueplato.com/forums/bbpress is not accessible (gives a 404). I was going to look at the theme you are using because that is not the default for the bb_tag_heat_map: <?php bb_tag_heat_map(9 38 ‘pt’ 80); ?>

This is the default from https://trac.bbpress.org/browser/trunk/bb-templates/kakumei/front-page.php#L7

<?php bb_tag_heat_map(); ?>

So, what do the numbers mean? Looking at that function in bb-includes/teamplate-functions.php around line 1574, here’s what the defaults are, and mean:

$defaults = array( 'smallest' => 8, 'largest' => 22, 'unit' => 'pt', 'limit' => 45, 'format' => 'flat' );

Looks like you define the smallest size, largest size, the unit of measure, the max size and then a format (not sure what that last one does.)

So, my guess is you would change those. At the very least you need to put comments between the arguments in the function call in your front-page.php: your example shows none. And you might want to add that last argument – not sure what happens when it’s missing.

Skip to toolbar