< Back

Document Subject: Dialog List Pulldown font and size
Hint Short Cut: Add this to your code & documentation to help you find this page.
http://#PullDownFont or http://A555F9/nn.nsf/ByAlias/PullDownFont

I have a pull down menu that allows access to  documents and views quickly. I had a requirement to use a smaller font for the dialog list. This cannot be done using HTML or Notes font control. I found a solution though.




Stick in some embedded stylesheet code and make it pass through HTML:

<STYLE TYPE="text/css" MEDIA=screen>
<!--
.searchbold  { font-size:10px; font-weight:bold;  font-family:arial,helvetica }
.search  { font-size:10px; font-family:arial,helvetica }
-->
</STYLE>

The HTML attributes of the Dialog list box are then set to:

"class=search"

or

"class=searchbold"

then the box is displayed smaller.

I like the bold one best.