This is to answer Rgsamtani's question (posted in another thread) about having different styles for each different page.
You would just want to open your myvbindex.php file and look for:
PHP Code:
require('./global.php');
Right above that you would want to add something like this:
PHP Code:
if ($action=='page1') {
$styleid = 'XX';
} elseif ($action=='page2') {
$styleid = 'YY';
} else {
$styleid = "";
}
Then of course you need to change XX and YY in the code above with the style id of the style you wish that page to appear in. You would also want to make sure that each part in the action's (page1, page2, etc) were the same for your news and styles.