ProsePoint Express: hosted newspaper website content management software

HTML bg color

2 replies [Last post]
rifract101
User offline. Last seen 5 weeks 13 hours ago. Offline
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

beng
User offline. Last seen 1 week 3 days ago. Offline
Joined: 27/02/2009
Posts:
Yes ...

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.

rifract101
User offline. Last seen 5 weeks 13 hours ago. Offline
Joined: 04/06/2009
Posts:
thankx beng, top man!
thankx beng, top man!