2

I want to change the color or even disable totally the alternating background colors in google prettify wich I use at my blog@blogger.

My current CSS is Doxy theme with this change:

/* Specify class=linenums on a pre to get line numbering; line numbers themselves are the same color as punctuation */
ol.linenums { margin-top: 0; margin-bottom: 0; color: #8B8970; } /* IE indents via margin-left */
li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: decimal !important } 
/* Alternate shading for lines */
li.L1,li.L3,li.L5,li.L7,li.L9 { }

This is how it looks now
enter image description here

I would like to change this white color to a dark grey with transparency or even completely remove the alternating color.

I've tried removing this

/* Alternate shading for lines */
li.L1,li.L3,li.L5,li.L7,li.L9 { }

But still nothing..

Games Brainiac
  • 80,178
  • 33
  • 141
  • 199
Chris
  • 3,619
  • 8
  • 44
  • 64

1 Answers1

2

Succeeded in fixing this by using the background property at the

/* Alternate shading for lines */
li.L1,li.L3,li.L5,li.L7,li.L9 { }

and also using the !important keyword to overwrite the defaults.

So this is how it looks like:

/* Alternate shading for lines */
li.L1,li.L3,li.L5,li.L7,li.L9 { background: #color !important }
Chris
  • 3,619
  • 8
  • 44
  • 64