View Single Post
  #2  
Old 4th April 2011, 07:09
Edgein's Avatar
Edgein Edgein is offline
Senior Member
 
Join Date: Sep 2008
Netherlands
Posts: 154
Default
Hello find this line in browse.php
PHP Code:
        $searcincategories[] = $c['id'];
        if (
$count && $count == 0)
        {
            
$categories .= '</tr><tr class="none">';
        }        
$searcincategories[] = $c['id'];
        if (
$count && $count == 0)
        {
            
$categories .= '</tr><tr class="none">';
        } 
and edit the number 3 to 4 or 5 what u like


The font size find in browse.php

PHP Code:
<font class="cat_link" style="font-size: 16px;"
and make the number 16 to what you like

font size sub catgory

find

PHP Code:
        $subcategories[$sc['pid']][] = '<font class="main"><a href="'.$seolink.'" target="_self" alt="'.$scdesc.'" title="'.$scdesc.'" />'.(isset($category) && $category == $sc['id'] || strpos($CURUSER['notifs'], '[cat'.$sc['id'].']') !== FALSE '<span style="background-color: rgb( 149, 206, 145);">'.$sc['name'].'</span>' $sc['name']).'</a></font>'
and replace with

PHP Code:
        $subcategories[$sc['pid']][] = '<font class="main" style="font-size: 10px;"><a href="'.$seolink.'" target="_self" alt="'.$scdesc.'" title="'.$scdesc.'" />'.(isset($category) && $category == $sc['id'] || strpos($CURUSER['notifs'], '[cat'.$sc['id'].']') !== FALSE '<span style="background-color: rgb( 149, 206, 145);">'.$sc['name'].'</span>' $sc['name']).'</a></font>'
u can edit style="font-size: 10px;" to what you like
Reply With Quote
The Following 3 Users Say Thank You to Edgein For This Useful Post:
eckeO5 (7th December 2011), Marco (30th December 2011), wellqfk (20th December 2011)