Viewing 1 replies (of 1 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    The reason for this is some JavaScript code in your page, most likely added by the theme, that adds a second set of coloring instructions. Please try removing that by removing the JS code

    jQuery(".post table.hover tr").
    	mouseover(function() {
    		jQuery(this).addClass("over");
    	}).
    	mouseout(function() {
    		jQuery(this).removeClass("over");
    	});	
    
    jQuery(".post table tr:even").
    	addClass("alt");

    from the page. My assumption is that this is stored in the either the “header.php” or the “functions.php” of the theme. Could you please check that?

    Regards,
    Tobias

Viewing 1 replies (of 1 total)

The topic ‘Odd color not working with mod'd css’ is closed to new replies.