Can someone tell me how to prevent tab background images from repeating? I have a single small graphic to display on a tab and it tiles repeatedly, filing the area. I'd like it to appear just once under the tab text. Thanks for helping with this.
I'm not entirely sure exactly where you've set this image to the background, but this is likely off the BackgroundImage property of one of our Style objects. Assuming that this is true, you can use the CustomRules property of that Style object to provide more CSS rules. Specifically, you should use the value "background-repeat:no-repeat" to keep the background image from repeating.
If you've set the background image in a CSS class, rather than using properties off our Style objects, simply add "background-repeat:no-repeat" to your CSS class definition.