Tue, 2012-02-07 23:02
Here's The Problem - I'm trying to make the bottom of the page (below the main page content, footer, etc.) continue as black like above, rather than going to white. Can someone tell me how to do this?
Wed, 2012-02-08 03:23
#1
I saw that on basic.css file,
On basic.css file, find following code.
body{
margin: 0;
padding:0;
}
And add "background:#000" to it, which looks like below.
body{
margin: 0;
padding:0;
background: #000;
}
Save and you should get what you wanted.
Cheers.
Mon, 2012-03-26 02:25
#2
Thank you Bijay. I also
Thank you Bijay. I also really like your website - you've done some beautiful work, I hope to work more with you in the future.
- Best regards,
Ethan
Tue, 2012-04-24 09:27
#3
Thanks for appreciation.
Thanks for appreciation.