Checkboxes

Status
Not open for further replies.

naive

Active member
Registered
Joined
Aug 8, 2023
Messages
30
Points
18

Reputation:

Hello and good evening,

I recently picked up on a old theme and reworked it along with the extra.css, then I noticed these checkboxes are by default with the "tick" symbol even if they are ticked or unticked.

I'm not able to figure out what I have done to make it like this, does anyone here know how to fix it?

For reference, check attached screenshot.
 

Attachments

  • DB5A6Fv.png
    DB5A6Fv.png
    15.6 KB · Views: 28

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
809
Points
153

Reputation:

Hello and good evening,

I recently picked up on a old theme and reworked it along with the extra.css, then I noticed these checkboxes are by default with the "tick" symbol even if they are ticked or unticked.

I'm not able to figure out what I have done to make it like this, does anyone here know how to fix it?

For reference, check attached screenshot.
naiveIt is most likely a css issue, but I can't really troubleshoot without URL.
 

xfaitoolkit

Member
Registered
Joined
Jan 8, 2025
Messages
7
Points
1

Reputation:

In the new version of themes before version 2.3, it can assign the True value. Improved not using current versions.
 

naive

Active member
Registered
Joined
Aug 8, 2023
Messages
30
Points
18

Reputation:

Closing this thread as I have found the issue, I removed following code from css and is now working as intended.

Edit: Unable to close thread, leaving it open.


CSS:
.iconic>input+i:before, .iconic>input+i:after {
    font-family: 'Font Awesome 5 Pro';
    font-size: inherit;
    font-style: normal;
    font-weight: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
}
 

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
809
Points
153

Reputation:

Closing this thread as I have found the issue, I removed following code from css and is now working as intended.

Edit: Unable to close thread, leaving it open.


CSS:
.iconic>input+i:before, .iconic>input+i:after {
    font-family: 'Font Awesome 5 Pro';
    font-size: inherit;
    font-style: normal;
    font-weight: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
}
naive
 
Status
Not open for further replies.
Top