Keep me signed in
Hi,
GagaAlive is a great app! Well done Digirave :-)I may have discovered a bug:When I view my PHPBB in IE7 the forums are out of alignment. The forums are centered when they should be aligned on the left hand side.Is this easily fixed?
I fixed the problem. It was easy in the end. I changed the GagaLive phpBB3 MOD code in function.php from:
if($user->data['user_id'] != ANONYMOUS) {
$chathtml = '<center><script src="http://en.gagalive.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
To
$chathtml = '<left><script src="http://en.gagalive.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
And
else {$chathtml = '<center><script src="http://en.gagalive.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
else { $chathtml = '<left><script src="http://en.gagalive.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
Cheers
I fixed the problem. It was easy in the end. I changed the GagaLive phpBB3 MOD code in function.php from:
if($user->data['user_id'] != ANONYMOUS) {
$chathtml = '<center><script src="http://en.gagalive.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
To
if($user->data['user_id'] != ANONYMOUS) {
$chathtml = '<left><script src="http://en.gagalive.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
And
else {
$chathtml = '<center><script src="http://en.gagalive.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
To
else {
$chathtml = '<left><script src="http://en.gagalive.com/Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
Cheers