How to change WebServer Folder and Content Icons



Applies To
Product(s):ProjectWise Web Server
Version(s):08.11.11.559
Environment: N/A
Area: GUI
Subarea:
Original Author:Ranveer Basra, Bentley Technical Support Group

 

 

 

 

 

 

Problem Description

When I navigate to 08.11.11.xxx (SELECTSeries 4) WebParts default.aspx the icons after logging in are larger than prior versions SS2 and SS3 and the content icons are larger.

Steps to Resolve

There are a few options here:

1. In a Internet browse; you can hold down the Ctrl key on your keyboard and scroll through the percentage in view. To either magnify or scale down the fonts/icons.

or

SERVER ADMINISTRATOR OR PROJECTWISE ADMINISTRATOR SHOULD DO THIS STEP. PLEASE MAKE SURE TO BACK UP YOUR FILES FIRST.

1. Navigate to C:\inetpub\WebParts\Resources\WebControls (or the folder where you created ProjectWise WebParts site)
2. Open tree.css in notepad and modify the line below: Default is  32px I reduced it to half. (screenshot 1; a) changing to the numbers below will result in the exampled screenshot

.ec-tree td img
{
    height: 16px;
    width: 16px;
}

3. to change the space between the folders you can modify the height and padding (screenshot 1; b) changing to the numbers below will result in the exampled screenshot

.ec-tree td
{
    height: 13px;
    padding: 2px;
}

3. Next open file flexiableList.css and modify the line below: Default is 32px I reduced it to half.  (screenshot 1; c) changing to the numbers below will result in the exampled screenshot

.ec-flexibleList .labelField img
{
    width: 16px;
    height: 16px;
    margin-right: 1px;
    vertical-align: middle;
    border: none;
}

Screenshot 1