Change About Me (Body) Background Color:Edit Background Color:This code changes the Background color of your About Me (Body) section, to any color of your choice:- Code: Select all
<style type="text/css">
<!-- hi5-World.com -->
#lifestyle .content {background-color: -color?-;}
</style>
-color?- = Any Hex code, RGB value or HTML name Color Code
Formats:(1) Hex code (
#FF0000)
(2) RGB value (
rgb(255,0,0))
(3) HTML name (
red)
Examples:#lifestyle .content {background-color:
#FF0000;}
#lifestyle .content {background-color:
rgb(255,0,0);}
#lifestyle .content {background-color:
red;}
[Click Here to view list of Color Codes]http://www.hi5-world.com/ColorCodes.htmHide About Me (Body) Background Color:No Background Color / Transparent Background Color:This code Hides the Background color of your About Me (Body) section, or makes it Transparent:- Code: Select all
<style type="text/css">
<!-- hi5-World.com -->
#lifestyle .content {background-color: transparent}
</style>