Soooo.. I don't really know where else to post this so here seems good lol.

I have been playing around with this theme for a while along with Xenforo as I have been thinking of switching to it for years and noticed on the Profile Page on all but the actual account page the theme was missing some CSS which caused the background to be very dark. I noticed you actually just removed the CSS for the border and background to eliminate the issue :)

So I ran through the code and fixed all the profile pages, all you need to do is go into your "Appearance > Templates" and find "EXTRA.css" then just add the following to the bottom:
Code:
.account_personal_details .sectionMain {
  background: none !important;
  border-color: #7D6C5A !important;
}
/* Manual Profile Fixes */
.account_alerts .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.news_feed_page .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_likes .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_signature .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_contact_details .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_privacy .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_preferences .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_alert_preferences .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_following .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_ignored .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
.account_security .sectionMain {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
  border-color: #7D6C5A !important;
}
/* END of Fixes */

If you removed the .sectionMain as well it would be a good idea to re-add it:
Code:
.sectionMain {
  background-color: #7D6C5A;
  border: 1px solid #E9DCC0;
  border-radius: 10px;
  padding: 10px;
}

Obviously this is just cosmetic and not required but just thought I would post this to let you know :)
 
Back