I like this theme 0- however the code ofr it somehow interferes with the l;inks code generated by other modules that created links with icons.

The two modules that I use where this is a problem is advanced_forum which gives the comment reply/edit/delete etc links icons, and also service links which sort of does that sharethis link as part of this there already does.

The end result is instead of seeing the icon/image links, you see the code for that so you get <img src="...

Comments

naheemsays’s picture

Fixing this involves replacing template.php line 377:

        $output .= l('<span>'. check_plain($link['title']) .'</span>', $link['href'], $link);

with

        $output .= l('<span>'. $link['title'] .'</span>', $link['href'], $link);

(removing the check_plain() )

antsin’s picture

Status: Active » Closed (fixed)