
Originally Posted by
sunhuntin
i have a free site account with weebly. it gives a limited number of page designs, but says they can be edited colorwise by the owner. i want to change the color of my background, but have no idea how. its done in http and css codes, which i cant make head or tail of.
also, i was looking at upgrading to pro. im assuming its in USD. is $70USD for 2 years good? [$3/month]
for pro you get
Password-protected pages
Remove or Customize Weebly footer
10 sites per account
100 MB file uploads
Audio player
Video player new!
Embedded documents new!
A $50 Google AdWords™ credit*
Premium Support
most of the extras i wouldnt use, but the video player would be kool.
thanks in advance!
if you can access the html then add something like this to your body tag
HTML Code:
bgcolor="#ffffff"
so you'll end up with this
HTML Code:
<body bgcolor="#ffffff">
where #ffffff is the hex code for the colour you want
or, if you can access the css then add a style something like this
HTML Code:
body{
background-color:#ffffff;
}
Bookmarks