Ideally I could specify a static image that would be displayed. This way I could size an image to fill the area.
An alternative, or even choice in the settings would be to hide the module all together. I do this with some of my own modules using the following code
' If there is no content and the use is not an Admin, hide the module
If colRD_RoleStatusList.Count = 0 Then
Me.ContainerControl.Visible = UserInfo.IsInRole("Administrators")
End If
Thanks