How to make the modal background more prominent or darker?
Q:
How to make the modal background more prominent or darker?
A:
If the style folder used is "wdstyles/blue", the CSS file "wdstyles/blue/blue.css" needs to be opened. In the CSS file, the following CSS class needs to be modified:
.blueFilterDivLayer { background-color:gray; filter:alpha(opacity=15); -moz-opacity:0.15; opacity:0.15; }
In this class, the values for opacity should be changed to higher values for darker modal background.
|