Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    Instead of using #content, please try using #wrapper in your CSS (this differs from theme to theme).

    Regards,
    Tobias

    Thread Starter leagcooks

    (@leagcooks)

    Hi Tobias,

    Thankyou very much for your help!

    The header background has now changed colour Thank you.

    But how do i remove the hover when you go over it with a mouse?

    And how do i make the rows all the same background colour please?

    I want the background colour to be #666666 same as the sidebar background colour.

    Thanks

    Lea.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi Lea,

    those hover and alternating row colors effects are coming from Atahualpa. It’s using this JavaScript code which you will have to remove:

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

    Is there maybe a setting for this in the theme options? Otherwise, you will have to modify the file that contains that code.

    Regards,
    Tobias

    Thread Starter leagcooks

    (@leagcooks)

    Hi Tobias,

    Thankyou for your continued support!

    Do you know what file i will find this code in please? I can’t see it in the theme options panel.

    Thanks

    Lea.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi Lea,

    no, sorry, as I’m not familiar with the Atahualpa theme, I don’t know where they are adding this ?? I can only suggest to contact their support team.

    Regards,
    Tobias

    Thread Starter leagcooks

    (@leagcooks)

    Hi Tobias,

    I removed the lines in js.php file and now i get this error

    Parse error: syntax error, unexpected ‘}’ in /var/sites/r/ridenerds.com/public_html/wp-content/themes/atahualpa/js.php on line 183

    Thanks

    Lea.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi Lea,

    my assumption is that you either accidentally deleted a little bit too much, or not enough.
    Can you maybe restore the file from a backup or a fresh download?

    Now, I just investigated that mentioned js.php file and it seems that there are actually options for turning this off without having to edit the file. Those settings should be in the theme options, in a section that deals with “Set Style for Tables”. Can you maybe try to find that?

    Regards,
    Tobias

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘CSS added but not changing style’ is closed to new replies.