Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to change the font size?

Viewing 1 replies (of 1 total)

  • Robkk
    Moderator

    @robkk

    It is usually recommended to not edit the core plugin files. Use a custom css plugin and add some of these styles and customize it to how you want it.

    1.

    
    .bbp-forum-content p,
    .bbp-topic-content p, 
    .bbp-reply-content p {
        font-size: 16px;
    }

    2.

    .bbp-topic-author a.bbp-author-name,
    .bbp-reply-author a.bbp-author-name {
        font-size: 14px;
    }

    3.

    Depends on what Avatars exactly? Plus CSS is not the best way to adjust this.

    #bbpress-forums div.bbp-forum-author img.avatar,
    #bbpress-forums div.bbp-topic-author img.avatar,
    #bbpress-forums div.bbp-reply-author img.avatar {
        border: none;
        max-width: 80px;
        padding: 0;
        margin: 12px auto 0 auto;
        float: none;
    }

    4.

    #bbpress-forums div.even,
    #bbpress-forums ul.even {
    	background-color: #fff;
    }
    
    #bbpress-forums div.odd,
    #bbpress-forums ul.odd {
    	background-color: #fbfbfb;
    }
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar