I did some more playing around with the templates, specifically this time the category image, as I feel it is to small.
First I opened the DragonByte Tech: vBArcade Templates/dbtech_vbarcade_headinclude and after this bit of code:
I added the following code below that one:
Then in DragonByte Tech: vBArcade Templates/dbtech_vbarcade_home_panels I found this bit of code:
And changed it to this:
In addition I also changed the game panel size to better fit the entire screen.
I did this by opening the DragonByte Tech: vBArcade Templates/dbtech_vbarcade_headinclude and finding the following bit of code:
And replaced it with this bit of code:
Basically changed the width from 250px to 281px
First I opened the DragonByte Tech: vBArcade Templates/dbtech_vbarcade_headinclude and after this bit of code:
Code:
img.arcade_icon
{
border: 1px solid black;
max-width: 40px;
vertical-align: bottom;
}
I added the following code below that one:
Code:
img.category_icon
{
border: 1px solid black;
width: 200px;
height: 100px;
vertical-align: bottom;
}]
Then in DragonByte Tech: vBArcade Templates/dbtech_vbarcade_home_panels I found this bit of code:
Code:
class="arcade_icon"
And changed it to this:
Code:
class="category_icon"
In addition I also changed the game panel size to better fit the entire screen.
I did this by opening the DragonByte Tech: vBArcade Templates/dbtech_vbarcade_headinclude and finding the following bit of code:
Code:
div.arcade_game_panel
{
width: 250px;
margin: 0 5px 10px 0;
display: inline-block;
vertical-align: top;
}
And replaced it with this bit of code:
Code:
div.arcade_game_panel
{
width: 281px;
margin: 0 5px 10px 0;
display: inline-block;
vertical-align: top;
}
Basically changed the width from 250px to 281px
Last edited:
Upvote
0