This topic is locked

Changing Colour of Details

8/12/2009 5:07:26 AM
PHPRunner General questions
S
swanside author

In the PHPRunner Manual, and Stylesheets where is displays : Details found: 18, and Page 1 of 2 I want to change to colour of this text in my project to #00ff00, but I can not find a class for these items.
How can I change the colours?
Thanks

Paul

J
Jane 8/12/2009

Paul,
you can edit style parameters for these elements on theVisual Editor tab in HTML mode:

#details_block{$id}, #pages_block{$id} {white-space:nowrap;}

S
swanside author 8/13/2009

Thanks Jane, but, how do I change the colours?
Thanks
Paul

J
Jane 8/13/2009

#details_block{$id}, #pages_block{$id} {white-space:nowrap;color:red;}

S
swanside author 8/14/2009

Thanks Jane.
I forgot to put the ; after nowrap and before color.
Cheers
Paul

#details_block{$id}, #pages_block{$id} {white-space:nowrap color:red;}