Jump to content
MakeWebGames

Recommended Posts

Posted

I really do not like the theme for MCcodes v2.0, and I would like to make it look a bit more like v1.1, where there is just a simple background colour. I would really appreciate it if someone would be able to show me how to do this.

Posted

Re: Help Changing Theme For MCcodes v2.0

A good idea in making your own game is to have its own Unique theme...

If you want to change ur background and writing color you will have to edit header.php

look for

 

<BODY>
<style type="text/css">
body {
background-image: <img scr='xxx.gif'>;
background-repeat:repeat;
background-color:#000;
background-attachment:fixed;
background-position:center;
margin-top: 0px;
margin-bottom: 0px;
font-family:calibri, helvetica, arial, geneva, sans-serif;font-size:11px;color: red;
  scrollbar-base-color: #005B70; 
  scrollbar-arrow-color: #F3960B;
  scrollbar-DarkShadow-Color: #000000;
}


a:visited,a:active,a:hover,a:link { color: white;text-decoration: none; }



table,tr,td { font-family:helvetica, arial, geneva, sans-serif;font-size: 11px; text-align:center; }
img { border:none; }
textarea { font-family:helvetica, arial, geneva, sans-serif;font-size:11px;color: yellow; }

 

To change main writing color edit this line

font-family:calibri, helvetica, arial, geneva, sans-serif;font-size:11px;color: red;

and change red to your preferred color!

 

To edit your Background find where it says

background-color:#000;

and change the color code to the color you want, ( to find color codes you can search through google if you are not sure....)

then to edit the color of the writing that comes through in Text boxes such personal Notes, find

textarea { font-family:helvetica, arial, geneva, sans-serif;font-size:11px;color: yellow; }

and change the "yellow" to preferred color

 

Hope this helps :-)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...