how come the 3 widgets on this page look fine in Firefox and Safari but terrible in Chrome and IE???? all three are normal text widgets and I'm using the Exec-PHP plugin to allow me to enter php in them. The first one just has text in it, but hte second widget has <?php wp_list_categories('title_li=&child_of=29&show_count=1&exclude=67' ); ?> PHP: and the third widget has <?php wp_list_categories('title_li=&child_of=30&show_count=1' ); ?> PHP: please advise. thanks in advance.
I think it's because wp_list_categories only outputs list items, so try wrapping your code with unordered list tags. <ul><?php wp_list_categories('title_li=&child_of=29&show_count=1&exclude=67' ); ?></ul> <ul><?php wp_list_categories('title_li=&child_of=30&show_count=1' ); ?></ul> Code (markup):