1

Topic: Quote borders

Hello there and thank you creating such a fast and easy to use - board.

I would like to ask if it's possible to remove dotted borders and background color  that appear after quoting someones message. I would like to change the quoted text to italic.

Thank you in advance.

Re: Quote borders

Of course, just open the stylesheets (.css files on root/style) and look for something like:

TD.punquote {
    background-color: #484848;
    border: #606060;
    border-style: dashed;
    border-width: 1px
}

Just change it to suit your tastes. If you want to keep all the possible stylesheets you'll have to modify all of the files.

Re: Quote borders

Change

TD.punquote {
    background-color: #484848;
    border: #606060;
    border-style: dashed;
    border-width: 1px
}

to

TD.punquote {
    background-color: #484848;
    border: #606060 1px solid;
    font-style: italic; 
}

I think that should work...