PDA

View Full Version : Specific style for home page


Spinball
07-29-2009, 01:03 PM
Guys, I want to put a specific style on the home page (forums/index.php) only.
Over vb.com they say it can't be done with the standard software.
Is it possible with a modification?

Lynne
07-29-2009, 03:08 PM
It may be possible with a plugin. Try the fetch_style (or is it style_fetch?) hook location and try a condition like:
if (THIS_SCRIPT == 'index') $styleid = xx;

Spinball
07-29-2009, 03:19 PM
Thanks, Lynne, I'll give it a try.

--------------- Added 1248887381 at 1248887381 ---------------

if (THIS_SCRIPT == 'index') {
$styleid = 26;
}

Works brilliant, thanks. style_fetch is the one.