MyBB Community Forums

Full Version: iGame 1.8.23 (Dark transparent skin)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
(2017-12-27, 10:15 PM)iAndrew Wrote: [ -> ]Templates > iGame > Footer Templates > Footer

Thank you iAndrew!
(2017-12-25, 04:20 PM)iAndrew Wrote: [ -> ]
(2017-12-02, 03:07 PM)DarkCode Wrote: [ -> ]This skin is problwm with 1.8.14 please fix.
The problem was admincp
When i use igame theme i got this messages whatever i edit the theme
But if i use other theme everything working find

Because the free version hasn't been updated since 1.8.7.

I see thx for answer

Can you please update the skin i love it i want to use it as will also when i move thread it wont work and i did fix like i did before but still same please.
Have a white version of this theme too?
This skin got problem about UCP.php but you have to use usercp.php right?
Hello! I have problem with login. When I click Login im not gettinig the login panel.. I need to click right click ot login and open liink inii new tab then im getting login panel
Add this in your global.css

/** Modal Start **/

.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.75);
	text-align: center;
}

.blocker:before{
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.05em;
}

.blocker.behind {
	background-color: transparent;
}

.modal {
	width: 400px;
	text-align: left;
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
}

.modal a.close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background: url(images/close.png) no-repeat 0 0;
}

.modal-spinner {
	display: none;
	width: 64px;
	height: 64px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-right: -32px;
	margin-top: -32px;
	background: url(images/spinner_big.gif) no-repeat center center;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
}

/** Modal End **/
Hey man I put the extra background in images but they won't install all I get is a white background can you please help
(2018-01-28, 01:58 PM)Papawade Wrote: [ -> ]Hey man I put the extra background in images but they won't install all I get is a white background can you please help

Did you rename it as the default image?
Hi. I appear to be having a rather odd issue with the iGame theme.

After a fresh install, pressing the login button sends the login box to the bottom of the page (not accessible) and makes it full width also...

Any help appreciated!

Cheers
- Adams
(2018-02-10, 06:28 PM)J. Adams Wrote: [ -> ]Hi. I appear to be having a rather odd issue with the iGame theme.

After a fresh install, pressing the login button sends the login box to the bottom of the page (not accessible) and makes it full width also...

Any help appreciated!

Cheers
- Adams

Add this in Global.css

/** Modal Start **/

.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center;
}

.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
}

.blocker.behind {
    background-color: transparent;
}

.modal {
    background: none;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
}

.modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background: url(../../../images/close.png) no-repeat 0 0;
}

.modal-spinner {
    display: none;
    width: 64px;
    height: 64px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -32px;
    margin-top: -32px;
    background: url(../../../images/spinner_big.gif) no-repeat center center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
}

/** Modal End **/