Image Directory Paths 
$stylevar[imgdir_button]Button Images Folder
$stylevar[imgdir_status]Item Status Icon Folder
$stylevar[imgdir_attach]Attachment Icons Folder
$stylevar[imgdir_misc]Miscellaneous Images Folder
$stylevar[imgdir_editor]Text Editor Controls Folder
$stylevar[imgdir_poll]Poll Images Folder
$stylevar[imgdir_rating]Ratings Images Folder
$stylevar[imgdir_reputation]Reputation Images Folder
The image directory path StyleVars point to directories containing groups of images on your web server.

The purpose of having several different StyleVars pointing to different image directories is to allow the administrator to choose which images are shared between styles, and which images are unique to each style.

For example, if a board has three different styles called 'Red', 'Green' and 'Blue', where the only difference between the three styles is the color scheme, the administrator may decide that each style will share all of its images, except for the button images, where he has created specially colored versions of the buttons to match the color schemes of the three styles.

In this case, all the image directory StyleVars could point to the same group of directories, with the exception of the $stylevar[imgdir_button] StyleVar, which would have a unique value for each style to point to the appropriate directory containing the colored buttons for each style.

In use, you will find the image directory StyleVars throughout the templates whenever an image is referenced. For example:
<img src="$stylevar[imgdir_button]/newthread.gif" alt="Post New Thread" />
This example shows the 'Button Images Folder' StyleVar being used to point the browser at the directory containing the button images for a style.

If our 'Red', 'Green' and 'Blue' styles have unique values for the button images folder, we might see that StyleVar being evaluated in the templates in this sort of manner:

'Red' Style
<img src="images/red_buttons/newthread.gif" alt="Post New Thread" />
'Green' Style
<img src="images/greenButtons/newthread.gif" alt="Post New Thread" />
'Blue' Style
<img src="images/buttons_for_blue/newthread.gif" alt="Post New Thread" />
The image directory StyleVars can take a URL of any of the following types:
Warning:
Do not include a trailing slash at the end of your image directory paths.

This is correct:
images/buttons

This is incorrect:
images/buttons/
Copyright © 2024 MH Sub I, LLC dba vBulletin. All rights reserved. vBulletin® is a registered trademark of MH Sub I, LLC dba vBulletin.