Rybolt wrote:...I like the subtle colors now, but on different types of monitors (LCD, laptop glossy, glass, etc.) it sometimes is very hard to see the distinction of quote blocks versus the regular body.
Rybolt wrote:i converted from another popular site that was too slow, and unwilling to change.
Rybolt wrote:what version of phpBB are you running?
sweaner wrote:I think the colors look good. The site functions quite well.
HB wrote:It's phpBB version 3 and the colors/fonts are in CSS.
The ideal solution would be a different quoted text color for the two post background colors; unfortunately the way it was coded, that would be very difficult to achieve (for techies: the rendering code for the BBcode markup is invoked outside of the context that knows the odd/even post count for the current post; see bbcode_second_pass_quote(...) in bbcode.php for details).
/**
532 * Second parse quote tag
533 */
534 function bbcode_second_pass_quote($username, $quote)
535 {
536 // when using the /e modifier, preg_replace slashes double-quotes but does not
537 // seem to slash anything else
538 $quote = str_replace('\"', '"', $quote);
539 $username = str_replace('\"', '"', $username);
540
541 // remove newline at the beginning
542 if ($quote == "\n")
543 {
544 $quote = '';
545 }
546
547 $quote = (($username) ? str_replace('$1', $username, $this->bbcode_tpl('quote_username_open')) : $this->bbcode_tpl('quote_open')) . $quote;
548
549 return $quote;
550 }I assume you refer to CoffeeGeek; I moderate there from time-to-time. Mark talks about a new and improved version of CG with lots of bells and whistles, but no firm release date. CG's speed is gated by an implementation designed for small sites; they've made it this far by throwing lots of fast hardware at it. This site uses phpBB, which is wicked fast in version 3 and it scales nicely. If I were in Mark's shoes, I'd get out of the custom software business and leverage open source software wherever possible, but I digress...
Rybolt wrote:I see what your saying now. Even post number should get quote style #1 , odd post number should get quote style #2.
Return to News and Suggestion Box