Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

4 Posts
3 Users
1 Reactions
1,600 Views
WiYa3D
Posts: 31
Topic starter
(@wiya3d)
Trusted Member
Joined: 5 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: 4 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: 1522
(@tutrix)
Noble Member
Joined: 5 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: 5 years ago

Trusted Member
Posts: 31

@tutrix 

 

Thank you