• Resolved provisia

    (@provisia)


    The alignment of the selectionboxes I use for bonusquestions is always 1 line above the text. Do u also have a solution for that problem?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author AntoineH

    (@antoineh)

    Sounds a bit like the combination of the default styling of the elements from my plugin is not working for your theme. The only solution is to inspect the element (right click ? Inspect) and find the CSS rule that is causing it. Then overwrite this rule in your Additional CSS for the theme. But this requires some CSS knowledge to fix it properly.

    Thread Starter provisia

    (@provisia)

    Thanks for your reply.
    For some reason setting an additional CSS rule with the following worked out for me:

    input.bonus {
    width: 5%;
    }

    Plugin Author AntoineH

    (@antoineh)

    This will also change the width of text inputs. If you are not using those, then that is fine. If you are, then I suggest making it more specific, e.g. like this:

    input:where([type="checkbox"], [type="radio"]).bonus { ... }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Alignment selection boxes’ is closed to new replies.