Hi everybody!
I am trying to set an user preference using the gameoptions.inc.php, using cssPref in order to customize the display using css.
The documentation says that the value of cssPref is applied to the body (as a class I surmise), but I see nothing using a web console; this does not seem to work and the body has no particular tag.
What do you think I miss?
Thanks for your help!
Woodruff
I am trying to set an user preference using the gameoptions.inc.php, using cssPref in order to customize the display using css.
Code: Select all
$game_preferences = array(
100 => array(
'name' => totranslate('Display field and pawn numbers?'),
'needReload' => false,
'values' => array(
1 => array('name' => totranslate('No'), 'cssPref' => 'hide_numbers'),
2 => array('name' => totranslate('Yes'), 'cssPref' => 'show_numbers')
)
)
);What do you think I miss?
Thanks for your help!
Woodruff