Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter AgingHipster

    (@aginghipster)

    Also, is the a better way of displaying the request button box than just a text link?

    Thanks
    Allen

    Hi Allen,

    It looks like your theme has some CSS code that is preventing basic form elements from displaying properly. They’ve included the following CSS “reset”, but failed to properly restore basic select and button element styles:

    * {
        background: none;
        border: 0;
        line-height: 1.5em;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    This is causing the unhelpful styling of the phone field and the request booking button.

    The problem with the add message field is also caused by some reckless CSS choices made by your theme. The theme hides all elements with the message class, no matter where or what they are:

    .message {
        background: #f4f4f4;
        display: none;
        padding: 20px;
    }

    I’m afraid you’ll need to contact your theme author to see if they can help, or roll up your sleeves and write some workaround CSS code.

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

The topic ‘Styling on form’ is closed to new replies.