PDA

View Full Version : Query on header image alt value


DevNet
12-21-2006, 07:14 AM
Hi Everybody

How to specify the alt value for the header image through the admin panel

ie The following is the header image in the header template

<img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" />

I am able to specify the $stylevar[titleimage] value through admin panel,

But I don't know where to specify the value for $vboptions[bbtitle]

Any one please help.
moses

SmashinYoungMan
12-21-2006, 03:11 PM
The bbtitle is what you specify as the forum name at vBulletin Options > Site Name / URL / Contact Details in the Forum Name field. You can, of course, simply substite whatever you want for $vboptions[bbtitle] by editing it directly in the header template, so it will be independent of your forum name. For instance, <img src="$stylevar[titleimage]" border="0" alt="Type here whatever you want your alt value to be" />

DevNet
12-22-2006, 05:47 AM
Thank You YoungMan....