Simracing League System v1.7 is released Most important changes are in CSS style sheets to make SLS HTML5 cross-platform compatible. If you are using custom CSS sheets, follow instructions, how to make changes1. SLS1.7 x compatibility for HTML5 x fixed CSS style sheets. - add # for colors - add px to numbers without unit (exception is layer) - changed pt height to px for fonts (to 11px) - set height styles tbl_data_grid_odd/event to 15px - add A.ovbutt style to css sheet - add style for hr x removed double html headers on some faxes + added autocheck for new versions, available only for superadmins. Hide for 7 days option. x fixed edit driver window size for admins + Added croatian localization x fixed missing cache refresh after adding bonus SLS1.6a x [ADM/IMPORT] fixed bug in JS which was disallowing of import result files How to update CSS sheets. There is no problem if you are using CSS sheets provided with SLS. Those will be replaced by update pack. But if you have own CSS probably you have some small bugs in it. There are ways how to fix if quickly Numeric colours definitions must begin with # character Quickest way is to use regex capable text editor. I'm using NetBeans for PHP package. 1. Open CSS file 2. chose Search and Replace option (CTRL+f) 3. check 'Regular Expressions box 4. enter following regex pattern into field 'Find What': color:( ?)([0-9A-Fa-f]+) 5. enter following regex pattern into field 'Replace with: color:#$2 $2 is backreference to found token (color number). In other editors backslash may be used instead of dolar sign (related to standards) add px to numbers without unit (exception is layer). Again I'm used NetBeans for PHP package. 1. Open CSS file 2. chose Search and Replace option (CTRL+f) 3. check 'Regular Expressions box 4. enter following regex pattern into field 'Find What': :( ?)([0-9]+)([ ;]+) 5. enter following regex pattern into field 'Replace with: :$2px; It will adds 'px' to all numeric values. 6. find z-index styles manualy, and remove 'px' from definition change pt units for fonts to px and set font height to 11px You can do that manualy by simply search and replace. you can also use regular expressions for that. 1. Open CSS file 2. chose Search and Replace option (CTRL+f) 3. check 'Regular Expressions box 4. enter following regex pattern into field 'Find What': ([0-9 ]+)(pt)[ ;]* 5. search values and manualy edit them. set height styles tbl_data_grid_odd/event to 15px Find tbl_data_grid_odd and tbl_data_grid_even styles and set height value to 15px (if not set) A.ovbutt new style Copy A.ovbutt style from one of the original stylesheets into own style sheet HR style Copy HR, .section_label and .section_label hr styles from one of the original stylesheets into own style sheet