trollr
trollr

Reputation: 1115

Wordpress hueman theme with crayon syntax highlighting

We use the hueman theme and the crayon syntaxhighlighter at our company blog. However we have a problem with the style of the code blocks.

For example: A blogpost at our blog

At every second code block the css stylesheet seems corrupt. The striped lines have the wrong background color and are white instead of grey. When I turn of the striped line feature, every second code block is white.

Anyone know this issue? I search for several hours but I wasn't able to fix it.

Upvotes: 3

Views: 507

Answers (1)

trollr
trollr

Reputation: 1115

Fixed it. Had ".entry table tr.alt" in my css which override the default crayon syntaxhighlighting style

Added:

.entry tr.crayon-row.alt {
  background-color: transparent;
}

and now it works as expected :)

Upvotes: 4

Related Questions