I never removed it, rather, moved it so it would go below the menu bar, instead of acting like a header above it. here is my code for the showgallery.php file...
Quote:
if ( $cattype == "c" && !$ppuser )
{
if ( $Globals['features'] == "yes" ) {
if ( $Globals['mostrecent'] == "yes" && $Globals['recentdefault'] == "yes" )
{
display_gallery("latest", "", $cat);
}
if ( $Globals['dispopular'] == "yes" )
{
display_gallery("most_views", "", $cat);
}
if ( $Globals['disrandom'] == "yes" )
{
display_gallery("random", "", $cat);
}
}
}
|