• Resolved oblahyo

    (@oblahyo)


    Hi there, could you please share the code for removing labels (but keep placeholders)

    and the CSS code to change the styling of input fields (name email website etc)

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter oblahyo

    (@oblahyo)

    and how to remove “1 entry”

    Plugin Author Marcel Pol

    (@mpol)

    Is this what you need?

    .gwolle-gb div.label {
        display: none;
    }

    And how would you want the input fields styled?
    This plugin has as little CSS as possible, input fields should be styled by the theme.
    You could start with this:

    .gwolle-gb div.input input {
        border: solid 1px #0000ee; // I think blue
        border-radius: 2px;
    }

    The total list can be removed like this:

    div#gwolle-gb-total,
    div.gwolle-gb-total {
        display: none;
    }
    • This reply was modified 5 years, 10 months ago by Marcel Pol.
    Thread Starter oblahyo

    (@oblahyo)

    Perfect! All worked. Thanks so much.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove Labels & Input CSS’ is closed to new replies.