Viewing 3 replies - 1 through 3 (of 3 total)
  • Looks like your table code in the CSS is the culprit:

    table {
        border: 2px solid #09f;
        margin: 0 0 1.5em;
        width: 100%;
    }

    Now, if you don’t want to remove the border from all tables, just ones inside your forms, you could do something like this:

    form table {
        border: 0px;
        margin: 0 0 1.5em;
        width: 100%;
    }
    Thread Starter grownwhole

    (@grownwhole)

    When I search for these lines, all I can find are relevant to

    .search-field:focus {
    background-color: #fff;
    border-radius:10px;
    border: 2px solid #c3c0ab;
    cursor: text;
    outline: 0;
    width: 230px;

    I can see it when I inspect the element, and can remove the internal borders, but still getting a blue (using Chrome) external outline..

    Any guidance on finding the code to alter?

    Thread Starter grownwhole

    (@grownwhole)

    Ok, found it…

    It would be nice to center the entire table however, if anyone has a recommendation.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove border from Paypal Button Form’ is closed to new replies.