Skip to main content

Search

Style Attachments box

Answered

Comments

5 comments

  • Matthias_Walter

    Hi Maria Giugno,

    you can achieve this by adding a style using our style editor like this:

    Scroll to the bottom and add the following into the CSS text box:

    .sb-field-input button {
      visibility: hidden;
    }

    .sb-field-input button::before {
      visibility: visible;
      content: "";
      font-family: "Fluent MDL2 Hybrid Icons";
    }

    .sb-field-input {
      background-color: "[theme: bodyBackground]";
      border-width: 0px;
    }

    The result will look like this:

    Best Regards
    Matthias

    1
  • Maria Giugno

    Hi Matthias,

     

    Thank you! This worked for me. I only changed the CSS slightly for a transparent background and increased the Font size:

     

    .sb-field-input button {
      visibility: hidden;
    }

    .sb-field-input button::before {
      visibility: visible;
      content: "";
      font-family: "Fluent MDL2 Hybrid Icons";
    }

    .sb-field-input {
      background-color: rgba(0, 0, 0, 0) ;
      border-width: 0px;
    }

    .uploadLink_447c849e {
      font-size: 25px;
      }

    .sb-field-label {
      display: none;
    }
    1
  • Maria Giugno

    Hi Matthias,

    When I save, I can only see a box with a question mark in it. In the design form mode it worked, but when you click save and test it doesn't work live.

     

    Please advise.

    0
  • Maria Giugno

    0
  • Maria Giugno

    I figured this out:

    .sb-field-input button {
      visibility: hidden;
    }

    .sb-field-input button::before {
      visibility: visible;
    content: "\E16C";
      font-family: "Segoe MDL2 Assets";
    }

    .sb-field-input {
      background-color: rgba(0, 0, 0, 0) ;
      border-width: 0px;
    }

    .uploadLink_447c849e {
      font-size: 25px;
      }

    .sb-field-label {
      display: none;
    }

     

     

    0

Please sign in to leave a comment.