Remove border using custom CSS code

  • iambradprice
    Asked on June 30, 2016 at 12:17 PM

    I have a frustrating orange border around my "Recommend a Book" form. How do I remove it?

    I've tried everything

  • John_Benson
    Replied on June 30, 2016 at 1:34 PM

    You can remove the orange border by injecting a custom CSS code. Here's the code:

    .form-all {
    border: 0 !important;

    If you want to remove the shadow, please add this CSS code.

    .form-all {
    box-shadow: none !important;
    }

    Here's a screenshot:

    Remove border using custom CSS code Image 1 Screenshot 20

    Hope that helps. Lets us know if you need further assistance. Thank you!