Don't forget to update the gif locations. I move mine into my Resources/Images/chrome where I keep madcap image files that I want handy.
Code: Select all
/* Glossary Term - Icon Spacing Fix - START */
/* removes the transparent png */
img.MCHelpControl_Image_Icon
{
display: none;
}
/* padding-right sets the spacing between term and icon */
/* Don't forget to update the location of the two gifs. */
/* I copy mine into the project resources/image/chrome (that a dir I created) */
.MCTextPopup_Closed.MCTextPopupHotSpot_
{
background-position: right;
background-image: url('../Images/chrome/ExpandingClosed.gif');
padding-right: 15px;
}
.MCTextPopup_Open.MCTextPopupHotSpot_
{
background-position: right;
background-image: url('../Images/chrome/ExpandingOpen.gif');
padding-right: 15px;
}
/* Glossary Term - Icon Spacing Fix - END */