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)

youssef87 09-21-2010 08:29 PM

thank you Hippy!

Krusty1231 09-22-2010 04:38 PM

Quote:

Originally Posted by Hippy (Post 2099202)

Just looked at your additional.css
the conflict is with .tcat..
..I would open up your skin_v3Arcade.php and your skin_Arcade.php
with your editer do a search for tcat.... and replace them all with blockhead
have a back up file to revert back if necessary

THANK YOU......THIS worked like a charm for two custom templates that were messed up.

My thanks.

Dutch_Boy 09-24-2010 08:40 PM

I have done everthing you sayed. But it didnt help for me.

I got 2 templates on my forum. 1 without problems.
The other one is complete custom template.

http://forum.highflow.nl/arcade.php

At the bottem us the brave template.

If tried to change the background collor but it didnt work :(

Code:

.tborder {
background-color:{vb:stylevar doc_backgroundColor};
        border: 1px solid #c4c4c4;
        font-size: {vb:stylevar font-size};
}
.tcat {
        font:{vb:stylevar blockhead_font};
        color:{vb:stylevar blockhead_color};
        background:{vb:stylevar blockhead_background};
        padding:{vb:stylevar blockhead_padding};
        border:{vb:stylevar blockhead_border};
        -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius};
        -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius};
        -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
        -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
}
.tcat a:link, .tcat_alink
{
        color: #ffffff;
        text-decoration: none;
}
.tcat a:visited, .tcat_avisited
{
        color: #ffffff;
        text-decoration: none;
}
.tcat a:hover, .tcat a:active, .tcat_ahover
{
        color: #FFFF66;
        text-decoration: underline;
}
.alt1, .alt1Active
{
        background: #F5F5FF;
        color: #1b1b1b;
}
.alt2, .alt2Active
{
        background: #E1E4F2;
        color: #1b1b1b;
}
/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead { padding: 4px; }
/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }
.tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; }
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset {
        padding: 5px;
        font-size: {vb:stylevar font-size};
        border: 1px solid #c4c4c4;
        margin: 0 2px;
}
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }


Hippy 09-24-2010 11:00 PM

they all have problems..
do this

"first replace in both styles" your ARCADE template.. with this one

Code:

{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
  <head>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
    <title>{vb:raw ibprotitle}</title>
    {vb:raw headinclude}
    {vb:raw headinclude_bottom}
  </head>
  <body>
    {vb:raw header}
    {vb:raw navbar}

  {vb:raw arcadeheader}
  {vb:raw maincontent}   


    {vb:raw footer}
</div>
  </body>

then open up your ARCADE.css in each of your styles
and replace each one with this one

Code:





.tborder {
background-color:{vb:stylevar doc_backgroundColor};
        border: 1px solid #c4c4c4;
        font-size: {vb:stylevar font-size};
}
.tcat {
        font:{vb:stylevar blockhead_font};
        color:{vb:stylevar blockhead_color};
        background:{vb:stylevar blockhead_background};
        padding:{vb:stylevar blockhead_padding};
        border:{vb:stylevar blockhead_border};
        -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius};
        -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius};
        -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
        -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
}
.tcat a:link, .tcat_alink
{
        color: #ffffff;
        text-decoration: none;
}
.tcat a:visited, .tcat_avisited
{
        color: #ffffff;
        text-decoration: none;
}
.tcat a:hover, .tcat a:active, .tcat_ahover
{
        color: #FFFF66;
        text-decoration: underline;
}
.alt1, .alt1Active
{
        background:{vb:stylevar formrow_background.backgroundColor};
        color: {vb:stylevar blocksubhead_color};
          //-moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius};
        //-moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius};
        //-webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
        //-webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
        //-moz-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //-webkit-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //margin-bottom: {vb:stylevar padding};
}
.alt2, .alt2Active
{
        background-color:{vb:stylevar content3_background.backgroundColor};
        color: {vb:stylevar blocksubhead_color};
        //-moz-box-shadow: -1px 1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //-webkit-box-shadow: -1px 1px 1px 1px{vb:stylevar forumbits_shadow_color};
        //margin-bottom: {vb:stylevar padding};
}
/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead { padding: 4px; }
/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }
.tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; }
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset {
        padding: 5px;
        font-size: {vb:stylevar font-size};
        border: 1px solid #c4c4c4;
        margin: 0 2px;
}
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }



make sure your over writing them
don't not add.

enjoy

Dutch_Boy 09-25-2010 07:54 AM

Didnt work :( I also removed the code that i added in vbulletin.css. After doing this the arcade template went back to ++++ed up :(

If added the arcade.css in the vbulletin.css again. But it only works for the breeze style :( The brave style is still ++++ed up :'(

Hippy 09-25-2010 10:52 AM

do you have save .css as a file turned on ?
these are details I need to know
anyway

if you are , then the ARCADE.css is no longer BEING use!!!!

if you add the ARCADE .css contents to the vbulletin.css.. []b]revert it back[/b].. then add the code ARACDE.css I posted above to your additional.css
any edites now being made tot he arcade MUST be made to the additional.css!

being you changed the ARCADE template allready I see, "because the footer is fixed" ..
this will call the correct css..

once you get this correct ..
report back

we can change all the tcat in your skin files (2 files)... to blockhead

Dutch_Boy 09-25-2010 12:23 PM

Oke working now:

Code:

.alt1, .alt1Active
{
        background: #;
        color: #1b1b1b;
}
.alt2, .alt2Active
{
        background: #;
        color: #1b1b1b;

If removed the background stuff and it usses the color code now i added.

But i still need to change allot. Text color is black :(

Edit:

http://forum.highflow.nl/arcade.php?act=Arcade

How do i change the text color? Its black now so you cant read it :S

Hippy 09-25-2010 02:06 PM

that text color is global..
I am not sure of the changes you are making but if you did what I have posted it works..
you need to see the changes you made and remove them..
that alt1 and alt2 you removed did you replace it with the alt1 and lt2 I posted in the other ARCADE.css?

this will change the BG to a different color so you can read the txt

Dutch_Boy 09-25-2010 02:25 PM

i read some where that you need to turn off the Product : ibProArcade for vBulletin -> arcade.css. I did this.

And im using additional.css thats in the brave template. There i removed some of the background css to make sure it uses the right background color.

Quote:

if you add the ARCADE .css contents to the vbulletin.css.. []b]revert it back[/b].. then add the code ARACDE.css I posted above to your additional.css
any edites now being made tot he arcade MUST be made to the additional.css!
Already did this.

Hippy 09-25-2010 04:02 PM

something is not correct in the css..
I have to think about this one.. for now tho
try changing any #000000 in the css to #E2E2E2
if thats your font color..
test each one on there ..

Dutch_Boy 09-25-2010 06:04 PM

Call me nuts call me crazy but there are no #0000 in the css :S

I thinks thats because i changed them to #ffff Thats whit.

Hippy 09-25-2010 08:48 PM

1 Attachment(s)
see if this arcade.css makes a difference replace it in your additional.css
I'm not sure what else to do
I have a dark custom style and I didn't have to do anything to that font it changed globally..
could be something in your Style Variable as well.
Code:

.tborder {
background-color:{vb:stylevar doc_backgroundColor};
        border: 1px solid #c4c4c4;
        font-size: {vb:stylevar font-size};
}
.tcat {
        font:{vb:stylevar blockhead_font};
        color:{vb:stylevar blockhead_color};
        background:{vb:stylevar blockhead_background};
        padding:{vb:stylevar blockhead_padding};
        border:{vb:stylevar blockhead_border};
        -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius};
        -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius};
        -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
        -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
}
.tcat a:link, .tcat_alink
{
        color: {vb:stylevar forumhead_color};
        text-decoration: none;
}
.tcat a:visited, .tcat_avisited
{
        color: {vb:stylevar forumhead_color};
        text-decoration: none;
}
.tcat a:hover, .tcat a:active, .tcat_ahover
{
        color: #FFFF66;
        text-decoration: underline;
}
.alt1, .alt1Active
{
        background: {vb:stylevar forumrow_background};
        color: {vb:stylevar blocksubhead_color};
}
.alt2, .alt2Active
{
        background: {vb:stylevar forumrow_background};
        color: {vb:stylevar blocksubhead_color};
}
/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead { padding: 4px; }
/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }
.tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; }
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset {
        padding: 5px;
        font-size: {vb:stylevar font-size};
        border: 1px solid #c4c4c4;
        margin: 0 2px;
}
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }


Dutch_Boy 09-26-2010 10:09 AM

Your the best !!

What did you change?
I wanna make the text a little bit whiter, so you can read it better.
Check arcade and you see what i mean.

Hippy 09-26-2010 11:57 AM

if you use a compare program ( something like compareit) you can compare this one I posted to the orginal one and see the changes I made..
most are changes where to vb stylevars so they will change when you make changes in the admincp..

as far as the color..
the arcade looks fantastic.. I wouldn't change it but you would need to find a stylevar you like the color of and change it

the problem we had before is that you made changes and I made changes ..
so we where not on the same page (so to speak)

try this one.. over write the one you added before
see what one is better for you
I would also use it on your other stlye ;)
Code:


.tborder {
background-color:{vb:stylevar doc_backgroundColor};
        border: 1px solid #c4c4c4;
        font-size: {vb:stylevar font-size};
}
.tcat {
        font:{vb:stylevar blockhead_font};
        color:{vb:stylevar blockhead_color};
        background:{vb:stylevar blockhead_background};
        padding:{vb:stylevar blockhead_padding};
        border:{vb:stylevar blockhead_border};
        -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius};
        -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius};
        -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
        -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
}
.tcat a:link, .tcat_alink
{
        color: {vb:stylevar forumhead_color};
        text-decoration: none;
}
.tcat a:visited, .tcat_avisited
{
        color: {vb:stylevar forumhead_color};
        text-decoration: none;
}
.tcat a:hover, .tcat a:active, .tcat_ahover
{
        color: #FFFF66;
        text-decoration: underline;
}
.alt1, .alt1Active
{
        background:{vb:stylevar formrow_background.backgroundColor};
        color: {vb:stylevar blocksubhead_color};
          //-moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius};
        //-moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius};
        //-webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
        //-webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
        //-moz-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //-webkit-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //margin-bottom: {vb:stylevar padding};
}
.alt2, .alt2Active
{
        background-color:{vb:stylevar content3_background.backgroundColor};
        color: {vb:stylevar blocksubhead_color};
        //-moz-box-shadow: -1px 1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //-webkit-box-shadow: -1px 1px 1px 1px{vb:stylevar forumbits_shadow_color};
        //margin-bottom: {vb:stylevar padding};
}
/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead { padding: 4px; }
/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }
.tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; }
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset {
        padding: 5px;
        font-size: {vb:stylevar font-size};
        border: 1px solid #c4c4c4;
        margin: 0 2px;
}
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }


Dutch_Boy 09-27-2010 07:26 PM

Tobad i cant give you thanks :(

Many thanks!! Works fine now!

kga10734 09-28-2010 02:41 AM

I have checked around and searched a bunch for an answer but can't find one. I have checked all the settings in my Admin CP and nothing.

Is there a way to list games in different categories but still have them all listed in a "All" category at the same time? I would like all the games show up under the categories, not just the ones listed in the category I have set for default.

I'm probably overlooking something. That is usually what my problem is.

Hippy 09-28-2010 06:35 PM

I don't think there is any option like this ..

ssslippy 09-29-2010 05:28 AM

We are getting a weird issue our bars are not showing up any advice?

http://immortal-guild.net/arcade.php

Hippy 09-30-2010 01:07 AM

your ARCADE.css is missing the tcat for some reason..
if you had edited restore it ..
if for some reason that don't work..
open up your skin_arcade.php
and with your editor search and replace all the tcat with blockhead..

there are tons
so if you have the option to replace all.. use it ;)

ssslippy 09-30-2010 02:21 AM

tried the replace with blockhead is failed and tcat is the addition.css

Code:

.tborder {
background-color:{vb:stylevar doc_backgroundColor};
    border: 1px solid #c4c4c4;
    font-size: {vb:stylevar font-size};
}
.tcat {
    font:{vb:stylevar blockhead_font};
    color:{vb:stylevar blockhead_color};
    background:{vb:stylevar blockhead_background};
    padding:{vb:stylevar blockhead_padding};
    border:{vb:stylevar blockhead_border};
    -moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius};
    -moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius};
    -webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
    -webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
}
.tcat a:link, .tcat_alink
{
    color: #ffffff;
    text-decoration: none;
}
.tcat a:visited, .tcat_avisited
{
    color: #ffffff;
    text-decoration: none;
}
.tcat a:hover, .tcat a:active, .tcat_ahover
{
    color: #FFFF66;
    text-decoration: underline;
}
.alt1, .alt1Active
{
    background: #F5F5FF;
    color: #000000;
}
.alt2, .alt2Active
{
    background: #E1E4F2;
    color: #000000;
}
/* ***** small padding on 'thead' elements ***** */
td.thead, th.thead, div.thead { padding: 4px; }
/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }
.tcat .shade, .thead .shade, .tfoot .shade { color: #DDDDDD; }
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset {
    padding: 5px;
    font-size: {vb:stylevar font-size};
        border: 1px solid #c4c4c4;
        margin: 0 2px;
}
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }


Hippy 09-30-2010 12:02 PM

what version of vb are you using ? If your using vb4 then blockhead could be missing some how from your vbulletin.css
you'll need to check and if it's missing add it back ..
check the default css template for the code..
notice in your arcade.css the tcat is using blockhead..
.blockhead is in the vbulletin.css
make sure it's there.

just looked at your site...
for some reason ( i don't know)
blockhead is not being used
looks like it's using
blocksubhead
in your arcade.css change blockhead to blocksubhead

also noticed your other style. you'll need to move the arcade.css contents to the addition.css and change the template as you did with the other style

m55629 10-05-2010 07:05 PM

Hi,
what is my problem?

http://forum.sanobar.ir/arcade.php

my version is 4.0.7

can u help me?

Hippy 10-05-2010 07:23 PM

like I send before over write the arcade template..with the one in the first post of this thread
in your case your using save css as a file via admincp
so you Will need to also copy your ARCADE.css contents to your additional.css
as stated in the first post of this thread..
we will see how it goes from there..

--------------- Added [DATE]1286310970[/DATE] at [TIME]1286310970[/TIME] ---------------

getting there :)
now do the Fieldset fix from the first post

m55629 10-05-2010 07:55 PM

1 Attachment(s)
thanks hippy!

i do this. it is very good Tips. but there is few problem.
see again my forum, my language is persian (RTL) I think these problems for this.
i dont know what is must change to correct it.

Excuse me to was long time

Hippy 10-05-2010 08:11 PM

as far as the corners go .. no fix unless you recode the mod.. it still uses tcat and tables the new vb4 doesn't ..
the language issue I'm sorrry I don't have a clue..

do the fiedset edit from the first post and the nav fix..
you can also do the atl1 and alt2 fix as well.. posted here https://vborg.vbsupport.ru/showthrea...66#post2106866
I sugest start a new thread about the language issue here ibProArcade

m55629 10-05-2010 08:16 PM

1 Attachment(s)
+

i want to games are separated by vertical line.

AND OTHER THAT SHOW IN PIC.

m55629 10-05-2010 08:18 PM

I DO IT.

Ok I Am Looking For U.

Thanks A Lot.

Hippy 10-05-2010 08:39 PM

centering the games is not supposed to be ..if you like that youll have to recode it
do this fix and see how things look
most of your problems seem like a language problem..
see what this does


•Fieldset fix

Go into your skin_Arcade.php

Search for

Code:
Code:

<fieldset>
Replace them all with...

Code:
Code:

<fieldset class="fieldset">
as far as the (( I never ever seen that before has to be a language thing

m55629 10-06-2010 10:08 AM

Dear Hippy!

Ur tips Very useful and was help me.

I change some things in Arcade_skin.php to repaire my problem. but not complete yet.

--------------- Added [DATE]1286363585[/DATE] at [TIME]1286363585[/TIME] ---------------

Quote:

Originally Posted by Hippy (Post 2105046)
what version of vb are you using ? If your using vb4 then blockhead could be missing some how from your vbulletin.css
you'll need to check and if it's missing add it back ..
check the default css template for the code..
notice in your arcade.css the tcat is using blockhead..
.blockhead is in the vbulletin.css
make sure it's there.


just looked at your site...
for some reason ( i don't know)
blockhead is not being used
looks like it's using
blocksubhead
in your arcade.css change blockhead to blocksubhead

also noticed your other style. you'll need to move the arcade.css contents to the addition.css and change the template as you did with the other style

Can you explain step by step for me?

Thanks.

--------------- Added [DATE]1286365544[/DATE] at [TIME]1286365544[/TIME] ---------------

i do this but nothing change.

Hippy 10-06-2010 09:32 PM

step by step for what fix ?

R4Z0R49 10-06-2010 10:09 PM

Hello Guys,

Can anyone tell me how to edit the font colour of these
options
best Score of all Time
actual Highscore Champion
personal best Score
Statistics
Game-Rating

Code:

<td class="alt1">
<fieldset class="fieldset">
<legend><b>{$ibforums->lang['gamebox_options']}</b></legend>

My Background is black as well as each one of thoise sections how do i change the font color of each one?

Also thanks Hippy your posts helped me alot today getting this mod working again Thank You

Hippy 10-07-2010 01:01 AM

1 Attachment(s)
you got me stumped
that should change globally with the forum..
I believe .legend controls size color etc
I have 2 styles
when I did the styles I focused on the forum and the arcade changed as well.
image attached
did you do the alt1 and alt2 edits in your ARCADE.css, posted here or in on of the threads in this arcade help forum..
do you have a screen shot of it .. or a link ?

R4Z0R49 10-07-2010 06:24 AM

Oh sorry i forgot to add our link here you go

http://thebritishguards.co.uk/main/arcade.php

Also i notice you have a good list of games how do i get thoise games?

Hippy 10-07-2010 11:05 AM

atm i am on my cell phone so i cant see well did you make the changes to the arcade.css ? The alt1 and alt2 . Did you do the fieldset fix? I will be able to get a better look when i get home.

R4Z0R49 10-07-2010 11:28 AM

Code:

.alt1, .alt1Active
{
        background:{vb:stylevar formrow_background.backgroundColor};
        color: {vb:stylevar blocksubhead_color};
          //-moz-border-radius-top{vb:stylevar right}: {vb:stylevar border_radius};
        //-moz-border-radius-top{vb:stylevar left}: {vb:stylevar border_radius};
        //-webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
        //-webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
        //-moz-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //-webkit-box-shadow: -1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //margin-bottom: {vb:stylevar padding};
}
.alt2, .alt2Active
{
        background-color:{vb:stylevar content3_background.backgroundColor};
        color: {vb:stylevar blocksubhead_color};
        //-moz-box-shadow: -1px 1px 1px 1px {vb:stylevar forumbits_shadow_color};
        //-webkit-box-shadow: -1px 1px 1px 1px{vb:stylevar forumbits_shadow_color};
        //margin-bottom: {vb:stylevar padding};
}


Yes both have been done added the .css section just to make sure i have the correct one

Hippy 10-07-2010 11:59 AM

looks correct im not sure off hand but in the usercp and general settings @ the bottom check the font color. Thats also .legend see if that font is legible

R4Z0R49 10-07-2010 12:15 PM

Hippy, Ive looked at that but its a gray color font not black.

Ive even tested using the normal default theme and thoise sections are still soild black fonts

Where can i find the .legend section? (Attached Thumbnails is also using legend and is also black)

--------------- Added [DATE]1286458441[/DATE] at [TIME]1286458441[/TIME] ---------------

Hippy,

Ive fixed it now thank you i just edited the reset-fonts.css and changed the legend{color:#000;}

So next problem on the Tournament Ladder View how do i change the white box's :-(


Thanks for your help Hippy

Hippy 10-07-2010 08:47 PM

1 Attachment(s)
tournament ? I am not sure what you mean ..
the ladder it black graphic if thats what your talking about .. you would have to make new ones..
if you can post a screenshot

Did you mean the white box around the crown.gif ?
if so find this code in your skin_arcade.php
Code:

<td align="center" style="background-color:#ffffff;">
<img src="./arcade/images/crown2.gif" alt="" /><br />
<big><b>{$champion}</b></big>

change the #ffffff

Jack12 10-08-2010 05:09 AM

Quote:

Originally Posted by Hippy (Post 2087815)







for those that are just trying to fix there log / banner
or Full width Forum logo mod
the above ARCADE template will work alone
this template should be changed anyway..
the arcade is so out of date. it's calling the old template ARCADE instead of ARCADEVB4
I just copied the ARCADEVB4 template and added it to the ARCADE template with a couple small changes
If you are still using the stock ARCADE template soon or later it's going to stop working.

Massive thanks for this snippet of information. I was scratching my head, trying to figure out why it had broken my custom header, then I found this. Cheers:up:

R4Z0R49 10-08-2010 06:44 AM

Hippy,

Yes got that for crown but for users who sign up im unable to locate where to change that background

Thanks


All times are GMT. The time now is 02:45 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.01489 seconds
  • Memory Usage 1,897KB
  • 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
  • (12)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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