• Resolved grosbouff

    (@grosbouff)


    Hi, could you add the selector .post-content input[type=”email”] here ?

    .post-content input[type="text"], .post-content input[type="tel"], .post-content input[type="url"], .post-content input[type="password"], .post-content textarea {
    ...
    }
Viewing 7 replies - 1 through 7 (of 7 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Are you also looking to do this yourself?

    Thread Starter grosbouff

    (@grosbouff)

    What do yo mean ?
    (sorry, my english is limited, i’m speaking french)

    I was posting this because the theme author forgot to put that selector in that list. I could obviously do it myself, but… If he updates his plugin, my changes will be lost.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I’ll mark this thread as “not a support question” then to avoid any further confusion

    Theme Author Anders Norén

    (@anlino)

    Hi grosbouff,

    The input[type=”email”] selector will be included in the next update. Thanks!

    — Anders

    This is my code, please add
    1. select with an arrow (/* -webkit-appearance: none; */)
    2. input[type=”email”]
    3. .widget-title{line-height:2;}

    <style>
    input[type="email"], select {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.85em;
    border: none;
    color: #333;
    border: 2px solid #eee;
    background: #fdfdfd;
    border-radius: 3px;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    -ms-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    /* -webkit-appearance: none; */
    }
    .widget-title {
    line-height: 2;
    }
    </style>

    I don’t understand!!!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘.post-content input[type="email"]’ is closed to new replies.