• Resolved boy1der

    (@boy1der)


    I can’t figure out how to change the Header/Footer color to something different than the “Lime Green” color. I tried under the “Forum Index Styling” tab for #2, but nothing is changing. Any help is greatly appreciated from an Old Geezer with limited abilities.

    Thanks

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Robin W

    (@robin-w)

    The setting in my style pack is fine, but you have some in-line styling that is overwriting – looks like it is coming from custom css – probably in your theme custom css.

    the file that is causing it looks like

    /* Enter Your Custom CSS Here */
    #bbpress-forums ul.bbp-lead-topic,
    #bbpress-forums ul.bbp-topics,
    #bbpress-forums ul.bbp-forums,
    #bbpress-forums ul.bbp-replies {
     font-size: 16px !important;
     font-weight: bold !important;
    }
    /* BBPress font fix */
    
    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-footer {
    background: #ccff99;
    }
    
    #bbpress-forums div.bbp-forum-title h3,
    #bbpress-forums div.bbp-topic-title h3,
    #bbpress-forums div.bbp-reply-title h3 ,
    #bbpress-forums a.bbp-forum-title,
    #bbpress-forums a.bbp-topic-permalink {
    	font-size: 18px;
      font-weight: bold !important;
    	color: #000000;
    }
    
    #bbpress-forums a.bbp-author-name {
    	font-size: 14px !important;
      font-weight: bold !important;
    	color: 	#008000 !important;
    }
    * {font-family:"Helvetica", monospace}

    and you need to take out

    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-footer {
    background: #ccff99;
    }

    as this takes priority over my plugin code

    • This reply was modified 5 years, 6 months ago by Robin W.
    Thread Starter boy1der

    (@boy1der)

    Robin W, Thanks for the quick reply. Awesome, that fixed it. Great Plugin.

    Plugin Author Robin W

    (@robin-w)

    great – glad you are fixed!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Unable to Change Header/Footer Color’ is closed to new replies.