Enhanced vMood Image Code (adds alt and title tags)
This modification is in the archives.
Okay, this mod is very, very simple. Basically, it takes the vMoods images, and adds relevant alt tags and title tags by using the data for what mood is displayed to fill them. Basically, if your mood was happy, the alt text will be happy and the title box once you hover over the image will say 'happy'.
In vmoods_aboutme, find: Code:
<li class="profilefield_category"> <dl class="list_no_decoration profilefield_list"> <dt class="shade">$vbphrase[vmoods_my_mood]</dt> <dd><img src="$vboptions[vmoods_images_path]/$userinfo[vmood].gif" border="0"/></dd> </dl> </li> Code:
<li class="profilefield_category"> <dl class="list_no_decoration profilefield_list"> <dt class="shade">$vbphrase[vmoods_my_mood]</dt> <dd><img src="$vboptions[vmoods_images_path]/$userinfo[vmood].gif" border="0" alt="$userinfo[vmood]" title="$userinfo[vmood]" /></dd> </dl> </li> Code:
<div> <span style="vertical-align: middle;">$vbphrase[vmoods_my_mood] </span> <img style="vertical-align: middle" src="$vboptions[vmoods_images_path]/$post[vmood].gif" border="0"/> </div> Code:
<div> <span style="vertical-align: middle;">$vbphrase[vmoods_my_mood] </span> <img style="vertical-align: middle" src="$vboptions[vmoods_images_path]/$post[vmood].gif" border="0" alt="$post[vmood]" title="$post[vmood]" /> </div> Download No files for download. Screenshots |
Similar Mods
Miscellaneous Hacks Enhanced Image Captcha - Stop bots from signing up! | vBulletin 3.7 Add-ons |
Mini Mods VB Image Hosting BBCode Align Image Tags | vBulletin 3.6 Template Modifications |