Notifications
Clear all

wpForo 1.x.x [Solved] How to edit Sign In/Up Box color of "wpForo User Profile & Notifications" - Widget

4 Posts
3 Users
1 Likes
1,003 Views
WiYa3D
Posts: 31
Topic starter
(@wiya3d)
Trusted Member
Joined: 4 years ago

Hi,

I want to change the box/Link box color of the Sign In & Sign Up of wpforo User Profile & Notification widget. & it's hover color to some other.

Can you help me archive that?

 

Thank you

 

 

 

3 Replies
tqarb
Posts: 45
(@tqarb)
Trusted Member
Joined: 3 years ago

change background-color ande color for title color and Put the code in the CSS custom

.wpforo-widget-wrap .wpf-button {
    background-color: #333 !important;
    color: #333 !important;
}
Tutrix
Posts: 1248
(@tutrix)
Noble Member
Joined: 4 years ago

@rapid3dme

add this to custom css

.wpf-prof-loginout .wpf-button {
background: #43A6DF !important;
color: #FFFFFF !important;
border: 1px solid #0099CC;
}
.wpf-prof-loginout .wpf-button:hover {
background: #3F7796 !important;
color: #FFFFFF !important;
border: 1px solid #0099CC;
}

Dashboard > Forums > Settings > Style (custom css)

and replace the hex color codes (#43A6DF, #FFFFFF, #0099CC and #3F7796) with yours

1 Reply
WiYa3D
(@wiya3d)
Joined: 4 years ago

Trusted Member
Posts: 31

@tutrix 

 

Thank you