The bidi.css and common.css files contain a background image rule on posts, this is probably left over from old versions that had border radius images and is no longer used.
File:
bidi.css
|
Delete:
/* Round cornered boxes and backgrounds
|
---------------------------------------- */
|
.rtl .post {
|
background-position: 0 0; |
}
|
File:
common.css
|
Find:
.post {
|
padding: 5px 10px;
|
margin-bottom: 4px;
|
background-repeat: no-repeat;
|
background-position: 100% 0; |
border-radius: 7px;
|
position: relative;
|
}
|
Change To:
.post {
|
padding: 5px 10px;
|
margin-bottom: 4px;
|
border-radius: 7px;
|
position: relative;
|
}
|