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 ..


All times are GMT. The time now is 03:30 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.01443 seconds
  • Memory Usage 1,762KB
  • 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
  • (4)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)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