The background color for the Joomla! beez template can be changed by editing the position.css file (the purple color)
To find this file, in the backend administrator panel head to:
- Extensions -> Template Manager
- In the Template Manager, select from the list the "beez" template and click to edit.
- Now, click on the "Edit CSS" icon from the right panel.
- From the list with css files select the position.css and edit it.
- At the beginning of the css file you will find the css property that needs to be modified:
body
{ background: #F2E3ED;
color: #000000; font-family: arial, helvetica, sans-serif; font-size: 100.1%; padding: 0px;
text-align: center;
} - Just replace the background property: background: #F2E3ED with other color.
For example, if you want a white background for the beez template use:
background: #FFFFFF;
