Fixed Nested quotes are not displayed correctly on iOS

It happens on desktop too.. it's just because there are too many nested quotes.. not sure what could be done about it really. Other than stripping too many nested quotes.
 
That would affect all quotes. Better solution is to change margin only for nested quotes:
Code:
.bbCodeBlock .bbCodeBlock
{
    margin-right: 1em;
}

will look like this...
nesting2.png
Code:
.bbCodeBlock.bbCodeQuote {
    margin-right: 0;
}
will look like this...
nesting.png
 

Attachments

  • nesting1.png
    nesting1.png
    136.1 KB · Views: 28
No, it won't. You pasted code incorrectly or posted wrong screenshot. That code doesn't affect first quote's right margin.
 
No, it won't. You pasted code incorrectly or posted wrong screenshot. That code doesn't affect first quote's right margin.
good eye... changed image...
I had this in css
Code:
.bbCodeBlock.bbCodeQuote {
    margin-right: 1em;
}
 
Back
Top Bottom