vBulletin - Arcade Anyone?
#1
Posted 06 February 2010 - 01:38 AM
Anyone made a correct skin?
#2
Posted 06 February 2010 - 01:44 AM
#3
Posted 06 February 2010 - 09:23 PM
I used firebug, changed the code on like 3 things and it looks perfect...
#4
Posted 07 February 2010 - 02:07 PM
Sean said:
[ATTACH=CONFIG]1958[/ATTACH]
I've highlighted the txt on the lefthand side just in case you were not sure what I was going on about, also if you check the members list, this to can be very hard on the eyes.
#5
Posted 07 February 2010 - 04:45 PM
#6
Posted 08 February 2010 - 07:49 PM
Please help.
#7
Posted 09 February 2010 - 12:03 AM
.alt2, .alt2Active {
background-color: #e1e4f2;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
color: #000000;
}
.alt1, .alt1Active {
background-color: #f5f5ff;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
color: #000000;
}
So in your additional CSS template add this:
.alt2, .alt2Active {
background-color: #1a1a1a;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
color: #fff;
}
.alt1, .alt1Active {
background-color: #000;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
color: #fff;
}
#8
Posted 09 February 2010 - 04:03 AM
Sean said:
.alt2, .alt2Active {
background-color: #e1e4f2;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
color: #000000;
}
.alt1, .alt1Active {
background-color: #f5f5ff;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
color: #000000;
}
So in your additional CSS template add this:
.alt2, .alt2Active {
background-color: #1a1a1a;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
color: #fff;
}
.alt1, .alt1Active {
background-color: #000;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
color: #fff;
}
here is the new altered ARCADE.css to suits your BP-black skins.
.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: #000;
color: #fff;
}
.alt2, .alt2Active
{
background: #1a1a1a;
color: #fff;
}
/* ***** 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; }
@ Bluepearl Fan, you need to go back to the arcade installation instructions and do the edits for the new skins you've added ;)
#9
Posted 09 February 2010 - 04:27 AM
Secondly, arcade.css would be the file to fix as per the posts above this one? I don't understand the "additional css template" comments.
#10
Posted 09 February 2010 - 04:30 AM
You can find this template via style manager, css templates
#11
Posted 09 February 2010 - 04:54 AM
Bluepearl Fan said:
Secondly, arcade.css would be the file to fix as per the posts above this one? I don't understand the "additional css template" comments.
The way I have my skins setup up, is to have a parent skin & then any other skin added I have as a child following the parent.
I don't bother with the Postbit Templates edits for arcade so for me it was a simple revert of navbar template to get the arcade link back in the new skins.
to get the navbar link back it should be find in navbar template:
<li><a href="calendar.php{vb:raw session.sessionurl_q}">{vb:rawphrase calendar}</a></li>
and below it add:
<li><a href="arcade.php{vb:raw session.sessionurl_q}">Arcade</a></li>
#12
Posted 09 February 2010 - 05:03 AM
acco said:
here is the new altered ARCADE.css to suits your BP-black skins.
.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: #000;
color: #fff;
}
.alt2, .alt2Active
{
background: #1a1a1a;
color: #fff;
}
/* ***** 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; }
@ Bluepearl Fan, you need to go back to the arcade installation instructions and do the edits for the new skins you've added ;)
Bingo! This did it for me...
acco said:
[ATTACH=CONFIG]1958[/ATTACH]
I've highlighted the txt on the lefthand side just in case you were not sure what I was going on about, also if you check the members list, this to can be very hard on the eyes.
That is exactly what I was looking to do....
Funny part is, I took firebug and "fixed it with just three color code changes, but could not figure out which file to edit with them...
#13
Posted 09 February 2010 - 06:12 AM
acco said:
I don't bother with the Postbit Templates edits for arcade so for me it was a simple revert of navbar template to get the arcade link back in the new skins.
to get the navbar link back it should be find in navbar template:
<li><a href="calendar.php{vb:raw session.sessionurl_q}">{vb:rawphrase calendar}</a></li>
and below it add:
<li><a href="arcade.php{vb:raw session.sessionurl_q}">Arcade</a></li>I reverted and nothing was fixed.
- Will either add code as you mentioned
or
- found a hack
#16
Posted 10 February 2010 - 04:31 AM
Quote
Apparently you have to do template edits to make the arcade work properly with templates
#17
Posted 10 February 2010 - 05:46 AM
#18
Posted 10 February 2010 - 06:43 AM
#19
Posted 13 February 2010 - 08:54 AM
acco said:
here is the new altered ARCADE.css to suits your BP-black skins.
.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: #000;
color: #fff;
}
.alt2, .alt2Active
{
background: #1a1a1a;
color: #fff;
}
/* ***** 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; }
@ Bluepearl Fan, you need to go back to the arcade installation instructions and do the edits for the new skins you've added ;)Where does one find the ARCADE.css
Actually any .css file for that matter. When I try to add the ones to the theme it says they obsolete and dont give me the option to edit
Edited by InternetMafia, 13 February 2010 - 09:27 AM.
#20
Posted 13 February 2010 - 11:22 AM
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users
















