Question How to make the game display use 100% width?

Status
Not open for further replies.

Emeralda

New member
How to make the games' display use the full width? Currently there's quite some space on the right. I've set the forum width to fixed 1000px.

71025292d2744a22bb65e21.png
 
It might depend on taste, but I think the current display is even worse, it's not so elegant. Why not make optional "fluid" widths so the width would be automatically adjusted?

cb64038d493748c7a00f7e0.png
 
I am not going to make fluid width game panels.
However, this might space them out in a more appealing fashion:

edit dbtech_vbarcade_headinclude find

HTML:
        if (games.length)
        {
            var line = Math.floor(pwidth / gwidth), left = (pwidth - (line * gwidth)) / (line - 1);

            games.each(function(i)
            {    //evenly space except the ends
                $(this).css('margin-right', ( ((i + 1) % line) ? left : 0 ));
            });
        }

replace with

HTML:
        if (games.length)
        {
            var line = Math.floor(pwidth / gwidth), left = Math.floor((pwidth - (line * gwidth)) / (line * 2));
            games.css({ 'margin-left': left, 'margin-right': left });
        }

let me know what you think
 
Status
Not open for further replies.

Legacy vBArcade

vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
899
Customer rating
0.00 star(s) 0 ratings
Back
Top