Info
- 6 posts
- 2 voices
- Started 3 years ago by kanefulton
- Latest reply from kanefulton
- This topic is resolved
where is the CSS to modify bbpress latest discussions?
-
- Posted 3 years ago #
hi guys, site is http://www.audioscribbler.co.uk
Basically, I've got the latest discussions plugin active in the sidebar, but I can't find the necessary code to edit to customise it. I've create a custom DIV class (this managed to change the line-height) but I can't get rid of the bold properties, I can't change the font - I've looked on the widgets.php page and can't find it, and editing the plugin itself doesn't seem to work. Anyone got any ideas? thanks
-
- Posted 3 years ago #
You mean the "Community" section on your WordPress site?
You need to change your .discussions2 style in http://www.audioscribbler.co.uk/wp-content/themes/revolution_magazine-40/style.css:
.discussions2 {
font-weight: none;
}
There's no such font-weight. You want:
font-weight: normal;
It pays to validate your CSS:
http://jigsaw.w3.org/css-validator/validator?profile=css21&warning=0&uri=http%3A%2F%2Fwww.audioscribbler.co.uk%2FYou've made the same error in other places as well.
Also, this has nothing to do with bbPress really, it's more of a Revolution Theme or WordPress question.
-
- Posted 3 years ago #
Yeah I keep meaning to look at them. I just assumed that because I'm using bbpress as the forum on my site, with the bbpress latest discussions plugin, it would've had something to do with bbpress. Oh well.
-
- Posted 3 years ago #
Did you resolve it? It's in your WordPress theme CSS.
-
- Posted 3 years ago #
Not yet - that discussions2 div class was something I made in an attempt to change the look of the links that the latest discussion plugin displays. I've decided to have a go at validating these errors before I attempt anything else.
-
- Posted 3 years ago #
Good call that - validating the CSS seems to have let me do what I wanted. Thanks!
-
You must log in to post.