Log in

View Full Version : all separating lines disappeared


madness85
04-11-2013, 07:01 PM
all lines between games etc have gone on all my styles can anyone help please looks a mess :(

https://vborg.vbsupport.ru/external/2013/04/31.jpg

Hippy
04-11-2013, 10:22 PM
that's fieldset ..
In my sig you'll find the thread to the arcade fixes..
I would change the template first
you'll see the info there

Stratis
11-29-2017, 04:10 PM
Same problem as the first post, no lines.
2 days I am searching and unfortunately can not find a fix.
This is the first time that I installed this ibProArcade in vb4.2.0


Can some one please shows me the correct direction.


Thanks for any help. :)

MarkFL
11-29-2017, 04:31 PM
Same problem as the first post, no lines.
2 days I am searching and unfortunately can not find a fix.
This is the first time that I installed this ibProArcade in vb4.2.0


Can some one please shows me the correct direction.


Thanks for any help. :)

Hello, Stratis! :)

Here is the CSS I use to add some style to that page...create a new plugin as follows:

Product: ibProArcade for vBulletin

Hook Location: parse_templates

Title: Arcade CSS

Execution Order: 5

Plugin PHP Code:

if (THIS_SCRIPT === 'arcade' OR strpos($_SERVER['REQUEST_URI'], 'arcade'))
{
$template_hook['headinclude_css'] .= '<style>.blockbody a {color: #0000FF !important;} .blockbody a:hover {color: #0000FF !important;} .tborder tr {border: 1px solid #CCCCCC;} .tborder tr td {padding: 5px;} .row1 tr {background: #CCCCFF; box-shadow: 2px 2px 2px rgba(0,0,0,.75)} .row1 tr tr {background: #FFAAAA linear-gradient(to right, #ffb0b0, #ffd0d0, #ffb0b0); box-shadow: none;} .row1 td {padding: 5px;} .tcat {padding: 5px; background: #00A000 linear-gradient(to right, #00A000, #00E000, #00A000); color: #FFFF00; white-space: nowrap; font-weight: bold; text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);} .alt2 {border: 1px solid #CCCCCC;}</style>';
}

Plugin is Active: Yes

Stratis
11-29-2017, 04:59 PM
Hi! Mark, thanks to bother answering.
I made the above but nothing changed.

156749 156750

I changed arcade skin to test, nothing in (V3arcade & ibProArcade skins)
I even tested in my default vb skin (this skin is untouched)

:)


EDIT
I see one mine mistake.
Hook Location: parse_templates
I put
Hook Location: page_templates


I will test again

MarkFL
11-29-2017, 05:20 PM
Another change you likely need to make is to edit the template "ARCADE_vB4" and right above the closing </head> tag put:

{vb:raw headinclude_bottom}

Stratis
11-29-2017, 05:24 PM
Well that plugin changed everything, I will play with colors only.
I have seen this change (vb:raw) and made it this morning.


Than you so, so, so much. :)

Stratis
12-02-2017, 06:39 AM
Mark today I saw that colors does not take effect in IE11, any other code to insert in the above? Any one else with IE solution?

Thanks

MarkFL
12-02-2017, 07:34 AM
Mark today I saw that colors does not take effect in IE11, any other code to insert in the above? Any one else with IE solution?


Thanks

Yeah, IE11 doesn't recognize standard CSS much of the time. You'd have to go to a site like:

Ultimate CSS Gradient Generator (www.colorzilla.com/gradient-editor/)

to generate the CSS recognized by non-compliant browsers like IE11. Edge will recognize that CSS though...friends don't let friends run IE. ;)

Stratis
12-02-2017, 09:14 AM
Thanks for your advice, I am looking it now.