MyBB Community Forums

Full Version: reputation alt text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Where would I add some alternate text for the reputation images?
inc\functions_post.php
Search for $post['neglink'] around Line 570
					$post['neglink'] = "<a href=\"javascript:reputation(".$post['pid'].", 'n');\"><img src=\"".$theme['imgdir']."/rep_neg.gif\" border=\"0\" alt=\"negative\"></a>";
					$post['poslink'] = "<a href=\"javascript:reputation(".$post['pid'].", 'p');\"><img src=\"".$theme['imgdir']."/rep_pos.gif\" border=\"0\" alt=\"positive\"></a>";
if you will add alt text to the Green or Red Images, open inc\functions.php and Search for function getreputation around Line 1307
Great, now how do I add alt text to the red and green coloured cubes?
There are already alternate text in the image tag

alt=\"negative\"
alt=\"positive\"

Just change the text to what you need.
Oh im sorry. I didnt read that last line Toungue