Forums

Join
bbPress Support ForumsThemeswhere is the CSS to modify bbpress latest discussions?

Info

where is the CSS to modify bbpress latest discussions?

  1. 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

  2. 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%2F

    You'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.

  3. 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.

  4. Did you resolve it? It's in your WordPress theme CSS.

  5. 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.

  6. Good call that - validating the CSS seems to have let me do what I wanted. Thanks!

  7. You must log in to post.