Product(s): eB WEB Version(s): 15.06.01.115 Environment: N\A Area: Publisher Subarea: Publisher Packages select box This wiki article will describe how to modify size of Publishing packages selction box Background When publishing object, in first publisher window you are prompted with list of publisher packages. This publisher packages selection box is fixed value. When main window maximized, box stays same size leaving most for work pane unused and if you have more than couple Publisher packages you need to scroll trough list. Steps to Accomplish 1. Navigate to your virtual directory\App_themes_Insight 2. Locate file called Insight.css and open it in text editor (notepad) 3. Find element ‘.actionPanel .addTree’. Default code for this element should be like below .actionPanel .addTree { float:left; width:40ex; border: 1px solid #c0c0c0; background-color:#ffffff; height: 40ex; overflow:auto; margin:1ex; } By modifying width and height parameters you can change size of publisher packages box. 4. Recommendations would be to set width to ‘40%’ and height to 80ex (height can’t be modified in % ). Code should look like .actionPanel .addTree { float:left; width:40%; border: 1px solid #c0c0c0; background-color:#ffffff; height:80ex; overflow:auto; margin:1ex; } See Also Original Author: Gintautas Bajoriunas
↧