Imanol Posted January 26, 2012 Report 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
Jeff Posted January 26, 2012 Report 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
Tom Posted January 26, 2012 Report 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
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.