AI Search
Classic Search
Notifications
Clear all
How-to and Troubleshooting - wpForo 2.0
7
Posts
3
Users
0
Reactions
2,383
Views
Mar 20, 2022 2:13 am
hey all thanks for the continuing support
I have two questions, both regarding styling. screenshots attached..
I want to firstly make the sign up boxes white, search field white, and remove the grey/green background behind the "password" field on registration page (screenshot one)
Secondly, on the "member profile" screen, i want to change/remove the background picture and styling behind the avatar picture, it doesnt sit well for me in terms of appearance.
Then i'd like to make the icons at the bottoom the green/grey colour instead of white
I cannot find the specific place to do this without altering other elements, i assume it will need custom css
6 Replies
Mar 20, 2022 6:57 pm
add this to custom css
.wpfcl-5 {
color: #9BA6A3 !important;
}
#wpforo #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-head-bg,
#wpforo #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-head-bg .wpfx {
background: none !important;
}
#wpforo #wpforo-wrap.wpf-dark input[type="text"],
#wpforo #wpforo-wrap.wpf-dark input[type="search"],
#wpforo #wpforo-wrap.wpf-dark input[type="email"],
#wpforo #wpforo-wrap.wpf-dark input[type="date"],
#wpforo #wpforo-wrap.wpf-dark input[type="number"],
#wpforo #wpforo-wrap.wpf-dark input[type="url"],
#wpforo #wpforo-wrap.wpf-dark input[type="tel"],
#wpforo #wpforo-wrap.wpf-dark input[type="password"],
#wpforo #wpforo-wrap.wpf-dark input[type="email"],
#wpforo #wpforo-wrap.wpf-dark textarea,
#wpforo #wpforo-wrap.wpf-dark select {
background-color: #ffffff !important;
}
#wpforo #wpforo-wrap.wpf-dark input[type="text"].wpf-search-field,
#wpforo #wpforo-wrap.wpf-dark .wpf-table .wpfw-1 .wpf-field:nth-child(2n) {
background-color: transparent !important;
}
Dashboard > Forums > Settings > Style (custom css)


