Forum breadcrumbs – You are here:Asgaros Support ForumSupportCheckbox Issue
Please or Register to create posts and topics.

Checkbox Issue

please check out the Checkbox for following a topic

https://forum.wir-sind-altenpflege.de/forum/topic/thema-2/

Uploaded files:
  • Bildschirmfoto-2021-05-12-um-08.33.51.png

Hey @armando,

There is an incompatibility with your theme. Can you please try to add the following CSS into “Forum”->”Appearance”: “Additional CSS”:

input[type="checkbox"]:checked::before{
  border-left: none !important;
  border-bottom: none !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;  
}

 

armando has reacted to this post.
armando
Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.

Okay – thanks a lot – I tried a similar code but then it infected the Checkbox at all – now it is working – TOP

qualmy91 has reacted to this post.
qualmy91

@armando

I’ve also added it to GitHub

https://github.com/Asgaros/asgaros-forum/pull/338

So it should be fixed with the next update.

Asgaros and armando have reacted to this post.
Asgarosarmando
Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.

I adde this tto:

 

/*Radio Button*/
#af-wrapper input[type=”radio”]:checked:before {
content: “”;

width: 10px !important;
height: 10px!important;
margin: 1px!important;

}

 

Because the RadioButton wasn’t pretty too

Good Job – thanks a lot

Hey @armando,

Thank’s for your feedback. I’ve also checked this out, but it seems to be caused by your custom CSS:

input[type="radio"]:checked::before {
    border: solid 1px;
}

After deactivating the custom CSS it seems to look good, so I will not push your CSS it to GitHub. It could also cause problems since it sets a specific height which could cause problems for other users.

armando has reacted to this post.
armando
Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.