• Resolved pixartmx

    (@pixartmx)


    The number field is very small, how can i change the size because i canot found a property that works in this type of field

    when the user need a big number he canot see what is selecting

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • hello @pixartmx

    you are looking for:

    form input[type="number"] {
        max-width: 250px; /* change this from 50px to 250px or so */
    }

    it’s minified so i can tell you only the filename of the stylesheet you need to change oceanwp/assets/css/style.min.css (search for "form input[type="number"] {")

    OR add this in customizer -> additional css

    body form input[type="number"] {
        max-width: 250px;
    }
    Thread Starter pixartmx

    (@pixartmx)

    Thank you Erik works fine now

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘NUmber type field size’ is closed to new replies.