vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   ibProArcade Archive (https://vborg.vbsupport.ru/forumdisplay.php?f=174)
-   -   ibProArcade Fixes (https://vborg.vbsupport.ru/showthread.php?t=249120)

docvader 08-31-2011 12:46 AM

Score not saving: Missing token..

Me too, after upgrade to 2.71. tried adding the code to index.php as you suggested in post one, get this error:

Parse error: syntax error, unexpected T_DEC, expecting T_STRING or T_VARIABLE or '$' in /home/username/public_html/forum/index.php on line 2

I'm not too keen on renaming forum to index and vice versa, etc, not because I can't do it, but because I'll completely forget about this once vbulletin gets upgraded, which seems to be fairly frequently, not to mention the google site searching changes. Any other fix for this? In a way that can keep this whole process functional and simple?

Hippy 08-31-2011 12:53 AM

Quote:

Originally Posted by docvader (Post 2240220)
Score not saving: Missing token..

Me too, after upgrade to 2.71. tried adding the code to index.php as you suggested in post one, get this error:

Parse error: syntax error, unexpected T_DEC, expecting T_STRING or T_VARIABLE or '$' in /home/username/public_html/forum/index.php on line 2

I'm not too keen on renaming forum to index and vice versa, etc, not because I can't do it, but because I'll completely forget about this once vbulletin gets upgraded, which seems to be fairly frequently, not to mention the google site searching changes. Any other fix for this? In a way that can keep this whole process functional and simple?




right after
<?php
add the code
so the top of your index.php file will look like this

Code:

<?php
// ibProArcade
if($_POST['module'] == "pnFlashGames")
{
        require_once('./global.php');

        switch($_POST['func'])
        {
                case "storeScore":
                $_GET['act'] = "Arcade";
                $_GET['module'] = "arcade";
                $_GET['do'] = "pnFStoreScore";
                break;

                case "saveGame":
                $_GET['do'] = "pnFSaveGame";
                break;

                case "loadGame":
                $_GET['do'] = "pnFLoadGame";
                break;

                case "loadGameScores":
                $gid = $vbulletin->input->clean_gpc('p', 'gid', TYPE_INT);
                $uid= $vbulletin->userinfo['userid'];
                $game = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "games_scores WHERE mid=$uid AND gid = $gid ORDER BY score DESC LIMIT 0,1");
                $scores = $game[score];

                if($scores != false)
                {
                        //Return true
                        print "&opSuccess=true&gameScores=$scores&endvar=1"; //send endvar to keep opSuccess separate from all other output from PostNuke
                }
                else
                {
                        print "&opSuccess=false&error=Error&endvar=1";
                }
                break;
        }
}

$act = $_GET[act];
$autocom = $_GET[autocom];
$showuser= $_GET[showuser];
if($act == "Arcade" || $autocom=="arcade") {
include "arcade.php";
exit();
}
if(!empty($showuser) && $showuser >= 1) {
$u = $showuser;
$_GET[u] = $showuser;
include "member.php";
exit();
}

// end of ibProArcade

the the rest of the index code will be under // end of ibProArcade
hope this helps ..
you can pm me if you get stuck..
will help you out
I am off to bed tho ATM so it will be tomorrow

enjoy




Quote:

Originally Posted by jaffaman (Post 2240093)
Thanks alot :)

welcome
glad to help

docvader 08-31-2011 04:21 AM

That worked! Thanks.

(Was that code different than the first post, or did I just make a really stupid mistake....)

Appreciate it.

Hippy 08-31-2011 08:31 AM

it was the same ..
enjoy

akxt660 09-01-2011 10:22 PM

After i upgrading, the background color of the tables were transparent, how do i change now? Tks.

Hippy 09-01-2011 10:24 PM

I'm not sure where you mean post a screen shot..if you can..

akxt660 09-01-2011 10:54 PM

Quote:

Originally Posted by Hippy (Post 2240999)
I'm not sure where you mean post a screen shot..if you can..

Look man:
http://img11.imageshack.us/img11/138...ayouterror.jpg

Hippy 09-01-2011 11:53 PM

in your arcade css change the background color for alt1 and alt2

to
Code:

background: transparent;

well looking now at the new ARCADE.css the background was removed .. so just add that line above color:#000000;

so it looks like this
Code:


.alt1, .alt1Active
{
              background: transparent;
        color: #000000;
}
.alt2, .alt2Active
{
              background: transparent;
        color: #000000;
}


akxt660 09-02-2011 12:27 AM

Perfect my dear. Many thanks! :)

Mickie D 09-07-2011 05:50 PM

Hi Hippy,

I am having a style issue with my forum.

Something is conflicting in the css I am sure.

This is the CSS with your modification (fix).

PHP Code:

@charset UTF-8;

.
loginLeft #fb_loginbtn {
position:relative;
top:4px;
}
.
popupbody li a,.popupbody li label {
background:#fff;
padding:8px 10px;
}
.
forumdescription {
padding-top:3px;
}
.
verticalAlign {
vertical-align:middle;
}
html[xmlns] .clearfix {
display:block;
}

html .clearfix {
height:1%;
}

#fb_headerbox {
padding-right:5px;
}

.
wgo_block {
margin:0;
}

.
navbar {
-
moz-border-radius-bottomleft:0!important;
-
moz-border-radius-bottomright:0!important;
-
webkit-border-bottom-left-radius:0!important;
-
webkit-border-bottom-right-radius:0!important;
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navBG.gif) repeat-x top left;
position:relative;
height:80px;
font:12px "Trebuchet MS",Verdana,sans-serif;
color:#005393;
width:100%;
margin:0;
padding:0;
}

.
announcements {
margin-top:10px;
}

.
highlight {
background-image:none;
}

.
navlinksBox {
text-align:center;
color:#5d5d5d;
font-size:11px;
font-weight:700;
margin-top:8px;
margin-bottom:0;
width:100%;
clear:both;
}

.
forumrow .forumtitle a:link,.forumrow .forumtitle a:visited {
color:#15315f;
font-size:16px;
}

.
forumrow .lastposttitle a:link,.forumrow .lastposttitle a:visited {
color:#882155;
font-weight:700;
}

.
forumrow .lastposttitle a:hover {
color:#15315f;
}

#forums .lastpostby a.username {
color:#1d79a5;
}

.
bodyWrap {
background:#fff;
margin:0 2px;
}

.
body_wrapper {
margin:0;
padding:10px 0;
}

.
above_body {
background:none;
margin:0;
padding:0;
}

.
threadbit .sticky,.threadbit .nonthread,.threadbit .nonsticky,.threadbit .deleted,.threadbit .discussionrow,.threadbit .ignored {
border-top:0;
}

body {
background:#123356 url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/pageBG.gif) repeat-x top left;
width:auto;
min-width:990px;
max-width:auto;
margin:0;
}

#pageWrapper,.pageWrap {
width:auto;
margin:0 50px;
}

.
pageTop,.pageWrap {
padding:0 4px;
}

#topBar {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/topBarBG.gif) repeat-x top left;
height:47px;
}

.
searchBox {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/searchBG.gif) no-repeat left;
float:left;
height:31px;
padding-left:33px;
position:absolute;
top:5px;
left:2px;
}

.
searchBox li {
float:left;
margin:0;
padding:0 7px 0 0;
}

.
searchInputBox {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/searchInput.gif) no-repeat top left;
width:186px;
height:31px;
float:left;
}

.
searchInput {
background:transparent;
border:0;
color:#959595;
width:170px;
height:31px;
line-height:31px;
margin:0;
padding:0 8px;
}

.
registerButton {
position:absolute;
top:7px;
right:5px;
}

.
doc_header {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/headerBG.jpg) no-repeat top left;
height:114px;
position:relative;
}

#logo {
position:absolute;
top:0;
left:0;
}

#memberBox {
float:right;
color:#f8d8d1;
padding:11px 4px 0 0;
}

#memberBox h3 {
color:#f8d8d1;
font-size:15px;
font-weight:700;
text-transform:uppercase;
margin:0;
padding:0 0 4px;
}

.
memberBox {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/memberBoxBG.png) repeat-x top left;
height:94px;
float:left;
}

.
memberBoxLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/memberBoxLeft.png) no-repeat top left;
height:94px;
}

.
memberBoxRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/memberBoxRight.png) no-repeat top right;
height:74px;
padding:10px 14px;
}

.
loginBoxInput {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/loginBoxInput.gif) no-repeat top left;
width:116px;
height:22px;
}

.
loginInput {
background:transparent;
border:0;
color:#a7a7a7;
height:22px;
line-height:22px;
width:106px;
font-size:12px;
margin:0;
padding:0 5px;
}

.
inputPad {
padding:0 6px 0 0;
}

#memberBox label {
padding:0;
}

.
memberBottom {
height:16px;
position:relative;
}

.
rememberMe {
position:absolute;
top:5px;
left:3px;
}

.
submitButton {
position:absolute;
top:6px;
right:0;
}

#welcomeBox {
background:#151515 url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/welcomeBoxBG.gif) repeat-x top left;
border:1px solid #040404;
padding:18px 20px;
}

.
welcomeBoxBottom {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/welcomeBoxBottomBG.gif) repeat-x top left;
height:7px;
font-size:0;
margin-bottom:5px;
}

.
welcomeBoxBL {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/welcomeBoxBL.gif) no-repeat top left;
height:7px;
}

.
welcomeBoxBR {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/welcomeBoxBR.gif) no-repeat top right;
height:7px;
}

#welcomeBox h2 {
font-size:15px;
font-weight:700;
color:#fff;
text-transform:uppercase;
margin:0;
padding:0 0 8px;
}

#welcomeBox p {
color:#c6ac8d;
line-height:18px;
margin:0;
padding:0;
}

#welcomeBox a:link,#welcomeBox a:visited {
color:#ef9507;
font-weight:700;
}

#welcomeBox a:hover {
color:#9c4764;
}

#contentMain {
background:#fff url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentTopBG.gif) repeat-x top left;
margin-bottom:7px;
}

.
contentWrap {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentBottomBG.gif) repeat-x bottom left;
}

.
contentLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentLeft.gif) repeat-y top left;
}

.
contentRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentRight.gif) repeat-y top right;
}

.
contentTL {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentTL.gif) no-repeat top left;
}

.
contentTR {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentTR.gif) no-repeat top right;
}

.
contentBL {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentBL.gif) no-repeat bottom left;
}

.
contentBR {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/contentBR.gif) no-repeat bottom right;
}

.
contentBodyWrap {
padding:23px 17px;
}

#footerNav {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/footerNavBG.gif) repeat-x bottom left;
}

.
footerNavLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/footerNavLeft.gif) no-repeat bottom left;
}

.
footerNavRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/footerNavRight.gif) no-repeat bottom right;
padding:5px 23px 13px 0;
}

#footerNav li {
float:left;
height:32px;
line-height:32px;
font-weight:700;
font-size:15px;
padding:0 21px;
}

#footerNav a:hover {
color:#fefeff;
}

#footerLogo {
float:right;
}

#footerMain {
padding:15px 21px;
}

#footerMain .copyright a:link,#footerMain .copyright a:visited {
color:#d5d9ff;
font-weight:700;
}

a:link.backTop,a:visited.backTop {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/backTop.png) no-repeat right;
float:right;
color:#d5d9ff;
font-weight:700;
padding-right:16px;
text-transform:uppercase;
}

#toplinks,.toplinks {
text-align:left;
line-height:20px;
top:6px;
right:0;
}

.
toplinks .notifications a.popupctrl {
color:#fff;
-moz-border-radius:5px!important;
-
webkit-border-radius:5px!important;
}

.
toplinks .notifications a.popupctrl:hover,.toplinks .nonotifications a.popupctrl:hover,.toplinks .nonotifications a.popupctrl.active,.toplinks ul.isuser li a:hover {
-
moz-border-radius:5px!important;
-
webkit-border-radius:5px!important;
}

.
memberBox .welcomeUser {
font-weight:700;
font-size:11px;
float:left;
}

.
memberBox .toplinks {
padding:2px 0 0 3px;
}

.
navLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navLeft.gif) no-repeat top left;
height:80px;
}

.
navRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navRight.gif) no-repeat top right;
height:80px;
padding:0 6px;
}

#navtabs li.selected ul.floatcontainer {
margin-top:5px;
}

#navtabs li.selected ul.floatcontainer a:link,#navtabs li.selected ul.floatcontainer a:visited {
line-height:27px;
height:27px;
}

.
navtabs ul li:first-child {
text-indent:0;
}

.
navtabs {
background:none;
padding-left:0;
}

.
navtabs ul {
position:absolute;
top:44px;
left:0;
width:100%;
direction:ltr;
}

.
navtabs li {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navSplit.gif) no-repeat top right;
padding-right:2px;
float:left;
}

.
navtabs ul li {
border-right:0;
position:relative;
}

.
navtabs li a {
height:44px;
line-height:44px;
}

.
navtabs li a.navtab {
display:block;
min-width:60px;
width:auto!important;
_min-width:75px;
_width:auto!important;
text-align:center;
color:#005393;
font-size:15px;
text-decoration:none;
line-height:41px;
height:41px;
font-weight:700;
padding:2px 15px 0;
}

.
navtabs li a.navtab:hover {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/navBG_hover.gif) repeat-x top left;
color:#1e3648;
}

.
navtabs li.selected {
color:#1e3648;
height:44px;
}

.
navtabs li.selected a.navtab {
color:#1e3648;
position:relative;
top:0;
padding-top:px;
z-index:10;
}

.
navtabs li.selected li a,.navbar_advanced_search li a {
text-decoration:none;
font:12px "Trebuchet MS",Verdana,sans-serif;
line-height:27px;
}

.
navtabs li.selected li {
padding:0 5px;
}

.
navtabs li.selected li li {
padding:0 2px;
}

.
navtabs li.selected li a {
color:#d5d9ff;
font-weight:400;
padding:2px 5px;
}

.
navbar_advanced_search li {
height:27px;
display:block;
clear:both;
}

.
navbar_advanced_search li a:hover {
color:#1e3648;
text-decoration:none;
}

.
navtabs li.selected li a:hover {
color:#fff;
text-decoration:none;
}

.
navtabs li.selected .popupbody li {
text-indent:0;
color:#000;
padding:0 10px;
}

.
navtabs li.selected li a.popupctrl {
-
moz-border-radius:3px;
-
webkit-border-radius:3px;
border:solid 1px transparent;
_border:none;
background:transparent url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/misc/arrow.png) no-repeat right center;
padding-right:15px;
_background-image:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/misc/arrow.gif);
color:#d5d9ff;
}

.
breadcrumb {
height:38px;
position:relative;
color:#617eb4;
font-weight:700;
margin-bottom:6px;
}

.
bcLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/bcLeft.png) no-repeat bottom left;
height:38px;
}

.
bcRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/bcRight.png) no-repeat bottom right;
height:38px;
padding:0 16px;
}

.
bcBody {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/bcBG.png) repeat-x bottom left;
height:32px;
padding-top:6px;
}

.
breadcrumb .navbit a,.breadcrumb .lastnavbit span {
border:1px solid transparent;
}

.
breadcrumb .navbit a:link,.breadcrumb .navbit a:visited {
font-weight:400;
color:#617eb4;
}

.
breadcrumb .navbit a:hover {
background:#617eb4;
color:#fff;
border:1px solid transparent;
}

#breadcrumb .searchBoxMain {
position:absolute;
top:13px;
right:6px;
float:right;
}

#breadcrumb .searchText {
line-height:26px;
}

#breadcrumb .searchBoxMain li {
float:left;
color:#393939;
margin:0;
padding:0 7px 0 0;
}

#breadcrumb .searchInputBox {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/searchInput.gif) no-repeat top left;
width:149px;
height:26px;
float:left;
}

#breadcrumb .searchInput {
background:transparent;
border:0;
color:#6a848f;
width:139px;
height:26px;
line-height:26px;
margin:0;
padding:0 5px;
}

.
tcat {
height:37px;
clear:both;
margin-top:8px;
float:left;
width:100%;
font:normal 12px Tahoma,Calibri,Verdana,Geneva,sans-serif;
color:#fff;
background:#20406b url(http://www.digitalworldz.co.uk/images/buttons/newbtn_middle.png) repeat-x;
border:1px solid #253761;
-moz-border-radius-topright:5px;
-
moz-border-radius-topleft:5px;
-
webkit-border-top-right-radius:5px;
-
webkit-border-top-left-radius:5px;
padding:4px 10px;
}

.
tcatLeft {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/tcatLeft.gif) no-repeat top left;
height:37px;
}

.
tcatRight {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/tcatRight.gif) no-repeat top right;
height:37px;
}

.
tcat .tcatDesc {
font-size:11px;
font-weight:400;
}

.
tcat h2 {
font-size:15px;
line-height:37px;
float:left;
font-weight:700;
padding:0 0 0 16px;
}

.
tcat .tcatCollapse {
float:right;
position:absolute;
top:10px;
right:10px;
}

.
tcat_threadlist_controls {
float:right;
padding-right:8px;
}

.
forumdisplaypopups,#forumdisplaypopups {
clear:both;
}

.
tcat_threadlist_controls h6 {
height:37px;
line-height:37px;
display:block;
font-size:11px;
padding:0;
}

.
forumdisplaypopups a.popupctrl,.forumdisplaypopups.popupgroup .popupmenu a.popupctrl,.postlist_popups h6 a.popupctrl,.postlist_popups.popupgroup .popupmenu h6 a.popupctrl {
background:none;
display:block;
_display:37px;
height:37px;
line-height:37px;
font-family:arial,helvetica,sans-serif;
font-weight:700;
font-size:12px;
color:#1e3648;
border:0;
float:left;
clear:right;
padding:0 7px;
}

.
forumdisplaypopups a:hover.popupctrl,.forumdisplaypopups.popupgroup .popupmenu a:hover.popupctrl,.postlist_popups h6 a:hover.popupctrl,.postlist_popups.popupgroup .popupmenu h6 a:hover.popupctrl {
border:0;
color:#1e3648;
text-decoration:underline;
}

#postlist_popups a,.postlist_popups a {
color:#1e3648;
_border:none;
}

#postlist_popups a:hover,.postlist_popups a:hover {
color:#1e3648;
text-decoration:underline;
}

#postlist_popups ul li {
color:#4e4e4e;
}

#postlist_popups ul li a,.postlist_popups ul li a {
color:#4e4e4e;
_border:none;
}

#postlist_popups ul li a:hover,.postlist_popups ul li a:hover {
color:#4e4e4e;
text-decoration:underline;
}

#forumdisplaypopups ul a,.forumdisplaypopups ul a {
color:#3e3e3e;
}

.
thead_bar .theadrow {
background:#15284f url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/theadBG.gif) repeat-x top left;
display:block;
width:100%;
float:left;
position:relative;
line-height:24px;
font-size:12px;
border:1px solid #253761;
color:#d5d9ff;
}

.
thead_bar .padding {
padding-left:12px;
}

.
thead_bar .forumhead span.forumlastpost {
width:23%;
}

.
thead_bar {
float:left;
position:relative;
width:100%;
display:block;
}

.
thead_bar .forumhead .forumtitle {
width:76%;
}

.
thead_bar .foruminfo {
width:53%;
min-width:30%;
float:left;
clear:right;
}

.
thead_bar .foruminfo .forumdata {
width:100%;
_width:99%;
padding:0;
}

.
thead_bar .forumstats,.thead_bar .forumstats_2 {
display:block;
float:left;
clear:right;
width:16%;
margin-right:2%;
}

.
thead_bar .foruminfo .forumdata .datacontainer {
float:left;
width:86%;
padding:0 0 0 68px;
}

.
thead_bar .forumactionlinks {
width:5%;
display:block;
float:left;
clear:right;
}

.
thead_bar .forumactionlink {
display:block;
width:18px;
overflow:hidden;
float:right;
clear:left;
background:transparent none no-repeat;
position:relative;
}

.
thead_bar .forumstats li,.thead_bar .forumstats_2 li {
font-size:12px;
text-align:right;
padding-right:20px;
display:block;
}

.
thead_bar .forumlastpost {
display:block;
float:left;
clear:right;
}

.
thead_bar .theadrow .forumlastpost {
width:22%;
}

.
forumbitBody {
padding-right:2px;
clear:both;
}

.
threadlist {
margin-top:0;
}

#threadlist .threadlisthead {
background:#15284f url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/theadBG.gif) repeat-x top left;
display:block;
width:100%;
float:left;
position:relative;
font-size:12px;
border:1px solid #253761;
color:#d5d9ff;
font-weight:400;
margin:0;
padding:4px 0;
}

.
postbit .posthead,.postbitlegacy .posthead,.eventbit .eventhead {
background:#15284f url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/theadBG.gif) repeat-x top left;
clear:both;
display:block;
float:left;
width:100%;
font:normal 12px "Trebuchet MS",Verdana,sans-serif;
border:1px solid #253761;
color:#d5d9ff;
font-weight:400;
margin:-1px -1px 0;
padding:4px 0;
}

.
postbit .posthead .date,.postbitlegacy .posthead .date,.eventbit .eventhead .date {
padding-left:17px;
}

.
wgo_subblock .whatspace {
padding-left:55px;
}

.
wgo_subblock .whaticon {
position:absolute;
top:25%;
left:10px;
}

#postlist .userinfo {
padding-top:10px;
}

.
username_container {
text-align:center;
padding:2px 0;
}

.
username_container .username strong {
font-size:16pt;
font-weight:400;
}

.
usertitle,.rank {
text-align:center;
}

.
usercenter {
padding-top:5px;
text-align:center;
}

.
post_field {
background:#fff;
color:#4d5153;
border:1px solid #bcb6ad;
margin-top:2px;
text-align:left;
padding:3px 3px 3px 10px;
}

.
post_field strong {
color:#ea7904;
}

.
post_field dt {
color:#ea7904;
font-weight:700;
}

.
postbit,.postbitlegacy,.eventbit {
margin-bottom:0;
}

.
postfoot {
border:1px solid #d3dadb;
border-bottom:0;
border-left:0;
}

.
postfootWrap {
border-right:1px solid #d3dadb;
}

#thread_info a.collapse {
position:absolute;
top:9px;
}

.
bottomBar {
background:url(http://www.digitalworldz.co.uk/images/styles/lifeSpace/style/bottomBarBG.gif) repeat-x top left;
height:4px;
font-size:0;
clear:both;
}

#notices .restore {
border:1px solid #cfbe7f;
color:#3c3a22;
-moz-border-radius:5px!important;
-
webkit-border-radius:5px!important;
padding:10px;
}

h1.header,h2.header {
text-transform:capitalize;
}

#searchtypeswitcher {
border-bottom:4px solid #5a1f51;
}

#searchtypeswitcher li a {
background-color:#89337c;
color:#FFF;
}

.
tborder {
border:1px solid #c4c4c4;
}

.
tcat a:hover,.tcat a:active,.tcat_ahover {
text-decoration:underline;
}

td.thead,th.thead,div.thead {
padding:4px;
}

.
pagenav td {
padding:2px 4px;
}

.
tcat .shade,.thead .shade,.tfoot .shade {
color:#DDD;
}

.
fieldset {
border:1px solid #c4c4c4;
margin:0 2px;
padding:5px;
}

.
fieldset,.fieldset td,.fieldset p,.fieldset li {
font-size:11px;
}

.
memberBox .toplinks ul.isuser .popupbody li,.formsubmit label {
color:#3a3a3a;
}

zz.toplinks #fb_loginbtn,.lastPostIMG,.cb_cookieuser_navbar {
position:relative;
top:2px;
}

img,#postlist_popups .popupmenu:hover a.popupctrl,#postlist_popups .popupmenu:hover .popupctrl a.popupctrl.active,.postlist_popups .popupmenu:hover a.popupctrl,.postlist_popups .popupmenu:hover .popupctrl a.popupctrl.active {
border:0;
}

.
forumrow .forumtitle a:hover,#forums .lastpostby a.username:hover {
color:#882155;
}

.
pageWrap,.wgo_subblock {
position:relative;
}

.
searchBox ul,#memberBox ul,.memberBox ul,#footerNav ul,#breadcrumb .searchBoxMain ul {
list-style:none;
margin:0;
padding:0;
}

#memberBox li,.memberBox li,#toplinks .isuser,.thead_bar .theadrow .forumdata {
float:left;
}

#footerNav a:link,#footerNav a:visited,#footerMain .copyright,#threadlist .threadlisthead a,#threadlist .threadlisthead a:hover,#posts .posthead a:link,#posts .posthead a:visited,#posts .posthead a:hover,#posts .posthead .time,#posts .nodecontrols {
color:#d5d9ff;
}

#footerMain .copyright a:hover,a:hover.backTop {
color:#ed8a06;
}

#toplinks .welcomelink,.tcat .forumtitle {
font-weight:700;
}

.
navbar a,.navbar_advanced_search li a {
color:#005393;
}

.
navbar a:hover,.tcat a:link,.tcat a:visited {
color:#1e3648;
}

.
navtabs li li,.bbcode_container .bbcode_quote_container,.forum_info_block,.forum_info_form,#sidebar_home #sidebar_container li li {
background:none;
}

.
navtabs li.selected li:hover a.popupctrl.active,.navtabs li.selected li a.popupctrl.active,.navtabs li.selected li a:hover.popupctrl,.block .searchlisthead,.block .searchlisthead a {
color:#fff;
}
#searchtypeswitcher li.selected a,#searchtypeswitcher li a:hover {
background-color:#5a1f51;
}
.
tcat a:link,.tcat_alink,.tcat a:visited,.tcat_avisited,.pagenav a {
text-decoration:none;
}
.
alt1,.alt1Active,.alt2,.alt2Active {
color:#000;


http://www.digitalworldz.co.uk/arcade.html


All times are GMT. The time now is 04:26 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01794 seconds
  • Memory Usage 2,098KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete