Today installed Glpi for colleagues, the results found that the data in the asset table is left-aligned by default, the field is center-aligned, it looks very uncomfortable, because Glpi is an open source system, after some effort, finally found the table alignment code. File path:
Glpi\css\styles.css
Then find the . Tab_cadrehov tag To modify the Text-align:left property to center.
. Tab_cadrehov {
Margin: 10px auto;
Border : 0;
/* Default is left;*/
Text-align: Center;
Font-size: 11px;
Width: 95%;
Background-color: #ffffff;
-moz-box-shadow: 0px 1px 2px 1px #D2D2D2;
-webkit-box-shadow: 0px 1px 2px 1px #D2D2D2;
Box-shadow: 0px 1px 2px 1px #D2D2D2;
Border-spacing: 0;
This article is from the "Xiaoming It Road" blog, so be sure to keep this source http://simonhu.blog.51cto.com/196416/1847395
GLPI The data alignment modification in the asset menu