BBPress modding

  • In Progress
    Posted in: Arcane  
  • Member
    meatgrindergames
    July 26, 2017 at 5:06 pm #102410

    Has anyone been able to get the BBPress forum to look like the rest of the theme? Getting it to use the same backgrounds/format of the blogs/member/team box backgrounds would make this theme so much more appealing for a forum driven community.

    Managed to piece together the following CSS code in order to get BBPress at least readable with the standard Arcane colorscheme.

    
    #bbpress-forums ul.bbp-lead-topic,
    #bbpress-forums ul.bbp-topics,
    #bbpress-forums ul.bbp-forums,
    #bbpress-forums ul.bbp-replies,
    #bbpress-forums ul.bbp-search-results {
    	font-size: 12px;
    	overflow: hidden;
    	border: transparent;
    	margin-bottom: 20px;
    	clear: both;
    	font-weight: bold;
    	padding: 8px;
    	text-align: center;
    }
    
    #bbpress-forums li.bbp-body ul.forum,
    #bbpress-forums li.bbp-body ul.topic {
    	border-top: transparent;
    	overflow: hidden;
    	padding: 8px;
    }
    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-body,
    #bbpress-forums li.bbp-footer {
    	background-color: #000;
    	clear: both;
    	border-top: transparent;
    }
    
    #bbpress-forums ul.even {
        background-color: #222;
    }
    
    #bbpress-forums ul.odd {
        background-color: #000;
    }
    
    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-footer {
    	background: #000;
    	border-top: transparent;
    }

    Sorry, this forum is for verified users only. Please Login or Register to continue

Comments are closed.