Viewing 2 replies - 1 through 2 (of 2 total)
  • If you look at your style.css, around line 206, the ‘big’ styling rules are only selecting input[type=”text”], textarea, input#s and input[type=”password”]:

    input[type="text"], textarea, input#s, input[type="password"] {
        background: none repeat scroll 0px 0px #EDEDED;
        border-radius: 5px;
        font-size: 14px;
        padding: 10px 7px;
        width: 98%;
        border-width: 1px;
        border-style: solid;
        border-color: #999 #FFF #FFF #999;
    }

    If you add each of the other input types you’re using to that list, they will all get the same wide/grey-background styles:

    input[type="date"],input[type="email"],input[type="file"],select

    You might want to add this and any other theme-based adjustments to a child theme.

    Thread Starter Dohn

    (@dohn)

    Thanks for your answer xanda. I will try that ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Different layout on the same form’ is closed to new replies.