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.
This theme is really great.. Thanks.
\: Wrote:Dragonfire[:' pid='1133361' dateline='1421658172']

(2015-01-17, 10:54 PM)QentiC Wrote: [ -> ]
(2015-01-17, 07:41 PM)iAndrew Wrote: [ -> ]Themes > iGame > Global.css  

Look for "input.textbox" and change the background to background: rgba(15,15,15,0.95);

Allright, already better. How about after entering the text and going to next one, it goes back to white. What to add so it doesnt change?

Find on Global.css "form input.valid" and "form input.error" and delete background value. Then it inherit of input.textbox

This did work when using Chrome, but not on Firefox. Anyway to make it work with firefox as well?
try with this:
background-color: rgba(15,15,15,0.95);
is sceditor not showing up for anyone else? seems weird, even with quick advanced editor.

I wouldn't be surprised if it was just some setting i've changed somewhere, but I can't for the life of me find anything that looks out of the ordinary.

edit; it's a problem on the side of my board, not the theme
(2015-01-19, 05:49 PM)subzr1 Wrote: [ -> ]try with this:

background-color: rgba(15,15,15,0.95);

Uh, Im sorry. Had to be some cache issue. Its working now.
Great skin, works really good but how can i change the iGame text on top for an image ?
Or change the text ?

Thanks !
(2015-01-20, 09:40 PM)Boyka Wrote: [ -> ]Great skin, works really good but how can i change the iGame text on top for an image ?
Or change the text ?

Thanks !

Thanks, it uses plain text so just edit where it says iGame text below in your header template
<a href="{$mybb->settings['bburl']}/index.php"><i style="font-size: 30px;" class="fa fa-crosshairs fa-fw"></i> IGame</a>


Or if you want an image logo just replace the code above with this. (you'll have to make your own logo.png as i didn't include one)

<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
Andrew my members are complaining about the white text fields, just like the other member here had.
I did all the things you told but how can i change the textfields to black with a white cursor? ( only in Firefox and IE is this problem )
Hope you can explain. Otherwise we have to switch to other theme, but we dont want.

Please help.
Thats a chrome and firefox issue not a theme problem. They both have crap input box styling. Those are black with white text in opera and other browsers (not sure about macs or other os)

Try this tho. Look for this in your global.css

input.textbox {

Remove the background and font color lines and replace them with these below.

-webkit-text-fill-color: white !important;
-webkit-box-shadow: 0 0 0px 1000px #1a1a1a inset !important;
Sorry still not working in FIreFox. Its good in Chrome.
Also in IE not working.

You said this:

Themes > iGame > Global.css

Look for "input.textbox" and change the background to background: rgba(15,15,15,0.95);

But i dont have background in input.textbox :

input.textbox {
-webkit-box-shadow: inset rgba(0,0,0,0.4) 0px 0px 0px 1px;
-moz-box-shadow: inset rgba(0,0,0,0.4) 0px 0px 0px 1px;
box-shadow: inset rgba(0,0,0,0.4) 0px 0px 0px 1px;
border: 1px solid #222222;
padding: 3px 6px;
outline: 0;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
-webkit-box-shadow: 0 0 0px 1000px #1a1a1a inset !important;
-webkit-text-fill-color: white !important;
color: #f1f1f1;
font-family: 'Roboto Condensed', sans-serif;
font-size: 13px;
font-style: normal;