MyBB Community Forums

Full Version: [Solved] Tesla Game Background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
Today I purchased TESLAGAME - RESPONSIVE MYBB THEME by myskins. 
I am just wondering is there a way to permanently set the default background and remove the background changer option.
I am trying to make the Minecraft theme background as the default one.
Any help would be much appreciated as I need to get my new forum back up asap.
what is your forum url ? can you please PM me the purchasing proof of the theme
Will do when I get on later is a screen shot of the email sent by PayPal okay?

(2017-06-11, 03:21 AM).m. Wrote: [ -> ]what is your forum url ? can you please PM me the purchasing proof of the theme

Okay,
Sent you my URL and proof of purchase.
simple method: in the global.css stylesheet of the theme you can add below property rules at the bottom
.tgbgbutton {display: none!important;}
 body {background-image: url("https://minecog.com/images/tg/bg/14.jpg")!important;}

Note: style sheets of the theme should be edited through themes section of forum admin panel
its better to edit a style sheet in advanced edit mode (select tab)

to see the style changes
you may have to hard refresh browser (eg. press CTRL + F5) on forum index page after saving changes to style sheet
(2017-06-11, 12:38 PM).m. Wrote: [ -> ]simple method: in the global.css stylesheet of the theme you can add below property rules at the bottom
.tgbgbutton {display: none!important;}
 body {background-image: url("https://minecog.com/images/tg/bg/14.jpg")!important;}

Note: style sheets of the theme should be edited through themes section of forum admin panel
its better to edit a style sheet in advanced edit mode (select tab)

to see the style changes
you may have to hard refresh browser (eg. press CTRL + F5) on forum index page after saving changes to style sheet

Thanks  Heart

(2017-06-11, 02:44 PM)irishmaniacgamer Wrote: [ -> ]
(2017-06-11, 12:38 PM).m. Wrote: [ -> ]simple method: in the global.css stylesheet of the theme you can add below property rules at the bottom
.tgbgbutton {display: none!important;}
 body {background-image: url("https://minecog.com/images/tg/bg/14.jpg")!important;}

Note: style sheets of the theme should be edited through themes section of forum admin panel
its better to edit a style sheet in advanced edit mode (select tab)

to see the style changes
you may have to hard refresh browser (eg. press CTRL + F5) on forum index page after saving changes to style sheet

Thanks  Heart Also, How can I add custom fonts and change the friendly redirect message
That method dosent appear to be working am I ment to add that at the very end of global.css before the /** Impromptu End */ like this 
}

.jqi .jqiarrowrb {
    right: -20px;
    bottom: 10px;
    border-left-color: #ffffff;
}

.tgbgbutton {display: none!important;}
 body {background-image: url("https://minecog.com/images/tg/bg/14.jpg")!important;} 

/** Impromptu End */
you can try adding them to teslagame.css style sheet

basically friendly redirect page message comes from global.lang.php file
$l['redirect'] = "You will now be redirected";
however that is only a part of the message.
complete message builds up depending on previous action & redirect location.

for the custom font you can try using this method [see also this post]
(2017-06-11, 04:12 PM).m. Wrote: [ -> ]you can try adding them to teslagame.css style sheet

basically friendly redirect page message comes from global.lang.php file
$l['redirect'] = "You will now be redirected";
however that is only a part of the message.
complete message builds up depending on previous action & redirect location.

for the custom font you can try using this method [see also this post]


Where should I add the I tryed adding it to the global css before the end but it didn't work. Also when you referred to the teslagame.css was it for the background code if so where should I add it to? 
.tgbgbutton {display: none!important;}
 body {background-image: url("https://minecog.com/images/tg/bg/14.jpg")!important;} 

Never mind problem solved
You can lock the thread now if you want.
Thanks for your help @.m.