This topic is locked

Backgorund color of all pages

5/13/2010 8:27:27 AM
PHPRunner General questions
M
MauroTired author

How can I change the backgound color of al the pages of my product generated in PHPRunner?
Thanks,

A
ann 5/13/2010

Hi,
The background of each page should be adjusted separately. Proceed to the Visual Editor tab of the page, switch toHTML mode.

Here is a code to change(bold):

<BODY {$bodyattrs} marginwidth="0" marginheight="0" style="background:red">

A
alang 5/14/2010



The background of each page should be adjusted separately.


This would be pretty tedious and difficult to maintain across a project. Presumably you could also create a new style, edit an existing style.css file or at least create a business template with changes made in the relevant template files under that.

C
chaintm 5/14/2010

Actually this is your clue right here while working within the editor and going to code mode...
link REL="stylesheet" href="include/style.css" type="text/css"
There in lays your answer, the style.css is your format for all things on all pages. Use this to add or adjust, if you need to over-ride settings or don't see what you need you add it here. I suggest to make a folder outside your project to save all these "unique" adjustment. as after you save a project all files are reset to that project loosing the work you did previously. If you have access I suggest you use dreamweaver or another editor to access the css pages for easier reading.