Imanol Posted January 26, 2012 Report Share Posted January 26, 2012 Hi All! I would like to change the background color of mysite but I do not know how to do it. Which file should I edit and which line? Thanks. Quote Link to comment Share on other sites More sharing options...
Jeff Posted January 26, 2012 Report Share Posted January 26, 2012 .css Look for where it says: body { background-color: #062139; /* change this color code to the color you want as your background color. */ Quote Link to comment Share on other sites More sharing options...
Tom Posted January 26, 2012 Report Share Posted January 26, 2012 <body style="background-color: #FFFFFF"> Replace with: <body> In styles.css: body { margin: 0px; padding: 0px; font-size: 12px; font-family: Arial; background-color: Black; } Replace with: body { margin: 0px; padding: 0px; font-size: 12px; font-family: Arial; background:#fff; } Making #fff the colour code you want to use. Quote Link to comment Share on other sites More sharing options...
Imanol Posted February 18, 2012 Author Report Share Posted February 18, 2012 Thank you guys! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.