Notifications
Clear all

[Solved] Checkbox in not visible in registration form

8 Posts
3 Users
1 Reactions
107 Views
Posts: 6
Topic starter
(@manmeet2997)
Active Member
Joined: 4 months ago

Please see the attached pic, and help me to fix this.

7 Replies
Posts: 6
Topic starter
(@manmeet2997)
Active Member
Joined: 4 months ago
2 Replies
Sofy
 Sofy
Admin
(@sofy)
Joined: 7 years ago

Support Team
Posts: 4651

@manmeet2997 

Please use the CSS code below to solve the CSS conflict: 

#wpforo #wpforo-wrap form input[type="checkbox"]{
   visibility: visible;
   opacity: 1;
}

Insert the CSS Code in the "Custom CSS Code" textarea in the wpForo > Settings > Colors & Styles admin page.

(@manmeet2997)
Joined: 4 months ago

Active Member
Posts: 6

@sofy
I added the following code  in the "Custom CSS Code" textarea in the wpForo > Settings > Colors & Styles admin page.
#wpforo #wpforo-wrap form input[type="checkbox"]{
visibility: visible;
opacity: 1;
}

I also refreshed webpage with ctrl + f5
and also cleared website cache. but still the issue is not resolved.
If i change the website theme, then I am able to see that checkbox.

Tutrix
Posts: 1436
(@tutrix)
Noble Member
Joined: 4 years ago

Hi @manmeet2997 

This is a CSS conflict with your WP theme or a plugin.
Provide a URL to your forum so we can check it.

1 Reply
(@manmeet2997)
Joined: 4 months ago

Active Member
Posts: 6
Tutrix
Posts: 1436
(@tutrix)
Noble Member
Joined: 4 years ago

@manmeet2997 

Add height and width to the code above

#wpforo #wpforo-wrap form input[type="checkbox"] {
  visibility: visible;
  opacity: 1;
  height: 15px;
  width: 15px;
}
1 Reply
(@manmeet2997)
Joined: 4 months ago

Active Member
Posts: 6

@tutrix It worked, Thanks..