Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
345
Not Styling correctly
posted

I have an app that I am using the Claymation style.  for some reason my grid is not styling correctly.  when you select a row the entire row turns white.  below is the css for the grid in the stylesheet

 

 

.igtbl_ClaymationSelected

{

 

 

 

border-top-width:1px

;

 

 

color:White

;

 

 

background-color:Gray

;

apparently whats happening is the text color is changing to white but the background color doesnt change to Gray. what could cause this.  i also have a menu on the same page with a similar issue.  what could cause only portions of the style to take effect?

Parents
  • 45049
    Suggested Answer
    posted

    Chances are likely that your styleset is using a background image, rather than a background color.  This is a typical approach to get gradients into an HTML page.

    Try adding the following to your style definition:

    background-image: none;

    If that doesn't do it, adjust this to:

    background-image: none !important;

Reply Children