Seeing the actual site so I can inspect the code would help with giving you an accurate CSS snippet.
IF there’s a BLOCKQUOTE HTML tag within the PRE elements, then you could probably use something like this to unset the PRE styling, then the BLOCKQUOTE styling settings in Style Pack would take effect:
.bbp-reply-content > pre {
all: unset;
background-color: transparent;
}
If there is no BLOCKQUOTE elements, then you’ll have to style the PRE elements specifically:
.bbp-reply-content > pre {
border-left: 4px solid #cccccc9e !important;
background-color: #eeeeee52 !important;
color: #000000 !important;
font-size: 12px !important;
font-family: Arial;
padding: 30px 20px 30px 20px !important;
margin: 0 0 15px 0 !important;
quotes: none !important;
}
The actual code on your site will determine which approach you need to take above.
Since I can’t test it, I can’t guarantee that it’ll work, but this should point you in the right direction.
Add ONE of those code snippets to the “Custom CSS” tab in Style Pack to test out (/wp-admin/options-general.php?page=bbp-style-pack&tab=css). I’d start with the first one to see if you can un-do the styling applied to PRE tags so that the Style Pack BLOCKQUOTE settings work as expected. If that doesn’t work, then you can manually style using the second code snippet.
-
This reply was modified 1 year, 4 months ago by
codejp3. Reason: added default values to second code snippet