Dismiss notice x color

Yep. It's part of this sprite image:

http://xenforo.com/community/styles/default/xenforo/xenforo-ui-sprite.png

If you want to specify different images then you can use some custom CSS:

Admin CP -> Appearance -> Templates -> EXTRA.css

Code:
.DismissParent:hover .DismissCtrl
{
	background: transparent url('path/to/regular.gif') no-repeat 0px 0px;
}

.DismissParent:hover .DismissCtrl:hover
{
	background: transparent url('path/to/hover.gif') no-repeat 0px 0px;
}

.DismissParent:hover .DismissCtrl:active
{
	background: transparent url('path/to/active.gif') no-repeat 0px 0px;
}
 
Top Bottom