Quote:
Originally Posted by gamerzhope
Thanks I'll keep trying..
I'm guessing to change the height/width of the slider display is also located in the CSS.
But what is the default size that the images should be for the slider?
I read 400px... I'm guess that's 400px for width. But what about in Height?
Thanks Alot!
|
i have change few things as you can see
here
Quote:
Originally Posted by nestaron
I'm using the slidermodule.php file for vBadvanced. The issue I'm having is that it will not parse the bbcode.
Code:
if (!is_object($bbcode_parser)){
require_once('./includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}
|
I am guessing that you have forum root in a folder called maybe its
forums or another name. if so replace it with this code below. just change the word
community to your forum root folder name. hope this helps.
Code:
// vBulletin: Parse BBCode
if (!is_object($bbcode_parser)){
require_once('../community/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}