INTERFACE_URL - this points to the interface images
IMG_URL - is needed since the images are in the img/ directory, and not everyone has their interface url the same url as img url
templates/mr.html
Find
- Code: Select all
<td style="background-image: url('{INTERFACE_URL}expbar-var2.gif');" width="{mr_skill.PERCENTAGE}%">
<img src="{INTERFACE_URL}pixel.gif" height="14" width="1" alt="" />
Replace with
- Code: Select all
<td style="background-image: url('{IMG_URL}expbar-var2.gif');" width="{mr_skill.PERCENTAGE}%">
<img src="{IMG_URL}pixel.gif" height="14" width="1" alt="" />