• Resolved pb52

    (@paulbarrett1952)


    I have adjusted the style of most elements using your plugin, but I can’t seem to increase the size of the forum post and reply font. I’m not sure which of your plugins settings is relevant if any but the css class appears to be bbp-body (I think)

    Is there a setting for that?

    The page I need help with: [log in to see the link]

Viewing 11 replies - 1 through 11 (of 11 total)
  • I would recommend not to set styles with bbp style pack but with custom CSS for the entire theme. Then you can collect font-size, which you want to use the same size into a one rule. The bacic CSS for bbPress might cause problems with style pack. But with your custom CSS you can easily override it at least using more complex rules or !important statement.

    If you have large CSS pack it with https://cssminifier.com

    Thread Starter pb52

    (@paulbarrett1952)

    That’s one solution. But my css skills are not good. I wouldn’t know where to start. That’s why I installed this plugin.

    If you have a block of css you can share please then that’d be great

    Currently my CSS i packed (mimized).Unfortunately I can’t put address here
    I have use bbp style pack just adding some features but I have myself defined most CSS.

    • This reply was modified 7 years, 2 months ago by tapiohuuhaa.
    • This reply was modified 7 years, 2 months ago by tapiohuuhaa.
    • This reply was modified 7 years, 2 months ago by tapiohuuhaa.
    Plugin Author Robin W

    (@robin-w)

    I wrote the style sections for people who unlike tapiohuuhaa don’t know css.

    the section of the plugin is

    topic/reply display item 6

    if you have changed that, and it doesn’t work, then come back

    Thread Starter pb52

    (@paulbarrett1952)

    Yep, I am exactly the type of person you wrote it for, and it’s great.

    I had already changed that setting, to no effect. Something must be overriding it. I can manually change the setting in Chrome Inspector, but I have no clue which css elements need to be changed.

    Regards

    Paul

    This is out of the topic, but last time I tried to open the page for setting some features for example settings for bbp style pack gave this error:

    Sivu ei toimi http://www.sanaristikkofoorumi.net ei voi käsitellä tätä pyyntöä tällä hetkellä.
    HTTP ERROR 500

    The pagedoesn’t work. … can’t handle the request at this moment HTTP ERROR 500
    I have in the root another installation of WordPress.

    I would have take off usage of the home icon from setting in order to avoid double CSS. As I wrote it work unreliable if you use settings made by bbp style pack. With custom CSS the dashicon work reliable.

    Chrome inspector give you much glue,

    see class=”” and id=”” attribute

    note that elementent are nested

    <div id=”someting”>…<div class=”something-else”>

    #someting .something-else {font-size:0.9rem}

    That should target the CSS enough exactly in order to override the basic CSS for bbPress.

    bbPress has default CSS and it must sometimes override. bbp style pack doesn’t necessary have needed selector in order to override all CSS, which you want to override.

    • This reply was modified 7 years, 2 months ago by tapiohuuhaa.
    • This reply was modified 7 years, 2 months ago by tapiohuuhaa.
    Plugin Author Robin W

    (@robin-w)

    ok, put this in the custom css section of my plugin, or the custom css of your theme

    #bbpress-forums .bbp-topic-content, #bbpress-forums .bbp-reply-content {
    	font-size: 20px !important;
    }
    Thread Starter pb52

    (@paulbarrett1952)

    Hang my head in shame. I was looking at the wrong tab!

    that might cause too big fort for mobile. In order to avoid that you can add width range for it for example:

    @media screen and (max-width:???px) { /* mobile font size*/
    #bbpress-forums .bbp-topic-content, #bbpress-forums .bbp-reply-content {
    font-size: 15px !important;
    }}
    @media screen and (min-width:???px) {/* desktop font size*/
    #bbpress-forums .bbp-topic-content, #bbpress-forums .bbp-reply-content {
    font-size: 20px !important;
    }}

    I can’t say, what values to use, because that depends on used themes. This is a quite complex issue. In order to set the correct value you should examine the CSS file of your theme. There might be a lot of those kinds rules. You should at least use those values, which are used in your theme in order to get consistent result.

    • This reply was modified 7 years, 2 months ago by tapiohuuhaa.
    • This reply was modified 7 years, 2 months ago by tapiohuuhaa.
    Plugin Author Robin W

    (@robin-w)

    no problem

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Content Style’ is closed to new replies.