Hey ebiznet,
I checked out your forum from a link in your profile as I couldn’t work out what forum theme you were using and it turns out your WP theme is interfering with the forum CSS.. It uses:
blockquote {
border: medium none !important;
}
Using !important is irresponsible as it means any plugin that uses the common ‘blockquote’ CSS class will be overwritten with boder: none.
Simple to fix though, you will need to go to your forum admin and navigate to Forum > Themes > Custom CSS, and paste in there:
#spMainContainer .spTopicPostSection .spPostSection .spPostContentSection .spPostContent blockquote {
border: 1px solid #BBBBBB !important;
}
Make sure to click ‘View Raw Code’ above before copying.. That should allow your forum themes blockquote class to take precedence.
Hope that helps!