|
#1
| |||
| |||
|
Hi, I have just installed Red Carbon on vBulletin 3.8.0 and it works great, thanks! However I have a problem with vBAdvanced 3.1.0 and the formatting for a one of the modules. I have attached a screenshot of the problem. 1) The calendar module doesn't line up the corners for some reason ![]() Any help greatfully received! regards, Alex Last edited by alexm; 12-01-2009 at 04:13 PM. Reason: 1st problem sorted! |
|
#2
| |||
| |||
|
Ok, I found the problem in vbadvanced... In modules/minicalendar.php (towards the end) there is the following statement: Code: if ($stylevar['cellpadding'] > 4)
{
$stylevar['oldcellpadding'] = $stylevar['cellpadding'];
$stylevar['cellpadding'] = 4;
}
![]() Anyway, if you comment this out it works: Code: if ($stylevar['cellpadding'] > 4)
{
$stylevar['oldcellpadding'] = $stylevar['cellpadding'];
// $stylevar['cellpadding'] = 4;
}
|
|
#3
| |||
| |||
| Re: Red Carbon and VBAdvanced 3.1.0
Thanks, was just looking for this. Also it does the same thing if you use the combocalendar also. |