Page links effects BUG:CSS doesn't work at IE6

In my environment, moderated CSS design with bigger size font_size etc. ,when page num links become to 33 the left 'content' slips to the page end if browsing by Windows IE6.

The firefox browser and MAC IE worked as expected, no problem.

I found the reason is the following script forces long lines for link.
The CSS 'content' having 'z-index: 3;' didn't work for this at IE6.

So, anyway solution is to line break the page_num;

/tempalates/DESIGN_NAME/page_num.php
I entered IF statement to add LineBreak when page_num reaches 30

CODE:


   // Generate the page numbers
   for($n=1;$n<=$x+1;$n++) {
if ($n%30) {
   echo "<a href=\"".$bmc_vars['site_url']."/".BLOG_FILE."?p={$n}{$query_str}\" title=\"{$lang['page']} {$n}\">{$n}</a>&nbsp;";
} else {
   echo "<a href=\"".$bmc_vars['site_url']."/".BLOG_FILE."?p={$n}{$query_str}\" title=\"{$lang['page']} {$n}\">{$n}</a><br>";
   }
}




There should be some more efficient way but it is working, so ... :-)

Thanks,
fjn