Tag: bbPress

  • How to increase the font size of bbPress [Memorandum]

    How to increase the font size of bbPress [Memorandum]

    You can increase the font size of bbPress by putting the following code in the additional CSS of the theme.

    bbpress-forums .bbp-topic-content p,
    bbpress-forums .bbp-reply-content p {
        font-size: 18px;
    }
    
    .bbp-forum-title {
        font-size: 22px;
    }
    
    #bbpress-forums .bbp-forum-info .bbp-forum-content, #bbpress-forums p.bbp-topic-meta {
        font-size: 16px;
    }
    
    div#bbpress-forums .bbp-topic-permalink {
        font-size: 20px;
    }
    
    #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results, #bbpress-forums ul.bbp-topics {
        font-size: 18px;
    	LINE-HEIGHT: 1.6em;
    }
    
    .bbp-reply-content {
        font-size: 20px;
    }
    
    div.bbp-breadcrumb, div.bbp-topic-tags {
        font-size: 16px;
    }

    To support Cocoon’s dark mode, add the following CSS.

    #bbpress-forums li{
    	color:#000;
    }
    
    #bbpress-forums a, #bbpress-forums a:hover{
    	color:#608fbd;
    }