HTML bg color
Tue, 18/08/2009 - 22:04
rifract101
Joined: 04/06/2009
Posts:
Is it possible to change the background color of the actual page in the browser, not the centered content but the 'margin' area? For example could I change the default light grey-blue to a red.
cheers

Hi,
Yes, you can.
The source CSS declaration is from .../profiles/prosepoint/themes/tma/tma/tma.css around line 33:
body{
background:#EBEFF2 url(images/body_main.png) repeat-y scroll center top;
}
However, you don't want to change that. You only need to override the background colour.
To do that, add something like the following to the end of your tma_custom.css:
body{
background-color: #f27979;
}
Of course, change the #f27979 to whatever RGB colour you wish.