views:

34

answers:

1

Hi everyone,

I decided that my client would be overwhelmed by a lot of bells and whistles in a message board like phpBB, so I started from scratch. So far everything has been working really well, apart from a little issue with quotes in replies.

When the user clicks Quote, they see this (using tinyMCE as my WYSIWYG): alt text

This is a blockquote styled with CSS, works great as long as it is by itself. But clearly this would pose a problem if a user were quoting a post that had a quote already (nested blockquotes).

One solution I considered was changing the blockquote tags to spans before they are entered into the editor, hoping that someone here might be able to provide a simple solution. I did consider using a span instead of blockquote but I like that the user has the ability to click the blockquote button in tinyMCE.

Any help would be appreciated. Thanks!

A: 

What's the problem? Your CSS styling?

blockquote blockquote{margin:0; padding:0; background-image:none;}

Using semitransparent BG images for nested blockquotes provides a nice darkening with each nest.

ryan
Yeah, my brain took a holiday.. I did just about exactly that right before I read your reply. Thanks :)
NightMICU