Quote:
Originally Posted by candyflip
It looks like you just need to update div class=wp_syntax.
In .wp_syntax, you have border-width: 1px 0; This shorthand css means top and bottom borders will have a width of 1 px, and left/right have zero. Try changing this line to:
border-width: 1px 1px 1px 0;
|
I'd considered that.. but then he tries to add the left & right borders further down in the css.. he should just border the whole wp_syntax div itself, then adjust the inner contents from there ><