Notifications
Clear all

wpForo 1.x.x [Solved] How To Change theThe Forum Search Side Bar Widget

5 Posts
3 Users
0 Reactions
1,449 Views
WiYa3D
Posts: 31
Topic starter
(@wiya3d)
Trusted Member
Joined: 5 years ago

Hi, I use wpforo plugin for my forum website.

And I added the Forum Search widget to side bar and wanted to change the search clicking box color and currently it doesn't have hover effect. Please refer the attached image for more idea what I'm talking about.

 

Can you help me to customize or do this.

 

Thank you.

 

4 Replies
Alvina
Posts: 1863
Moderator
(@alvina)
Member
Joined: 5 years ago

Hi @rapid3dme,

Please try the following CSS code: 

#wpf-widget-search input[type="submit"] {
height: 30px !important;
}

#wpforo #wpforo-wrap input[type="submit"]:hover, #wpforo #wpforo-wrap input[type="reset"]:hover {
background: #3a7386;
}

Please note the red marked value can be changed.

The CSS code should be added in the Dashboard > Forums > Settings > Styles admin page "Custom CSS code" textarea.

Don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.

WiYa3D
Posts: 31
Topic starter
(@wiya3d)
Trusted Member
Joined: 5 years ago

I have added the CSS code to Dashboard > Forums > Settings > Styles admin page

However it doesn't change anything

Following is the current all the CSS code

 

#Top_bar #menu ul li a span.description {
display: none;
}

#wpforo-wrap {
font-size: 13px; width: 100%; padding:10px 0; margin:0px;
}

#wpf-widget-search input[type="submit"] {
height: 30px !important;
}

#wpforo #wpforo-wrap input[type="submit"]:hover, #wpforo #wpforo-wrap input[type="reset"]:hover {
background: #2E9CCA;
}

1 Reply
Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1453

@rapid3dme

try

#wpf-widget-search input[type="submit"] {
height: 30px;
background:#2E9CCA;
color:#FFFFFF;
}
#wpf-widget-search input[type="submit"]:hover, #wpf-widget-search input[type="reset"]:hover {
background: #5680e9;
}

 

 

WiYa3D
Posts: 31
Topic starter
(@wiya3d)
Trusted Member
Joined: 5 years ago

Great, now it's working,

thank you