1
FileUltimate - How to increase font-size
Question asked by mark - 7/21/2016 at 10:31 AM
Answered
We are using v5.3.8.
We would like to increase the font-size when viewing files and folders in Details View (Folders in the Navigation pane and the Name, Date modified, etc).

We cannot find any information in the Examples.
fileManager.ApplyStyleSheetSkin(Me.Page)

thanks

mikez

2 Replies

Reply to Thread
0
Cem Alacayir Replied
Employee Post Marked As Answer
You can do this by including this CSS rule in your page which hosts the file manager:
.x-grid-cell 
{
    font-size: 20px !important;
}
Note that this would also increase the font size of the folder tree (left pane). If you want to keep the font size at the default size there, then also include this CSS rule:
.x-grid-cell-treecolumn 
{
    font-size: 12px !important;
}
 
0
mark Replied
Cem,
 
Updated to v5.4.
I looked at the fileultimate.css file that gets cached.
This is what ended up working.  I needed to add "-inner".
Also, I commented out this line in code.  It does not seem to be needed.
fileManager.ApplyStyleSheetSkin(Me.Page)
 
.x-grid-cell-inner
{
    font-size: 14px !important;
}
 
.x-column-header-inner
{
    font-size: 14px !important;
}
 
mikez
mikez

Reply to Thread