Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1073687

    Hi Guys,

    I’ve managed to alter my checkboxes position with a Quick CSS you’ve answered on a different topic however I haven’t be able to figure out how to make it bigger.

    #1074154

    Hey mooshonov,

    Thanks for the screenshot, could you post a link to where we can see the actual elements as well please?

    Best regards,
    Rikard

    #1074747

    there you go.

    #1075659

    Hi mooshonov,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    input[type=checkbox] {
      transform: scale(1.5);
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1075697

    Can you please specify some distance between the scaled checkbox to the label?

    #1076355

    Hi,

    Did you try to add margin to the code?

    input[type=checkbox] {
      transform: scale(1.5);
      margin:10px;
    }

    Best regards,
    Rikard

    #1076359

    Thanks a lot! it has now space but it’s not aligned center. Value is pushing the text upwards instead of left away from the checkbox (RTL).

    #1076732

    Hi,

    Try this instead:

    input[type=checkbox] {
      transform: scale(1.5);
      margin:10px 0 0 10px;
    }

    Adjust the margin values to your liking (top/right/bottom/left)

    Best regards,
    Rikard

    #1076821

    Thanks Rikard! 100%!

    #1076950

    Hi,

    Great, I’m glad you got it working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1076956

    All is good, thanks a lot!

    #1077208

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Enlarge Checkbox Size’ is closed to new replies.