Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1128374

    I looked for an answer to a simple question, but couldn’t find one. The Color Section gives an option for a “simple 1px top border,” but there is no 1px border option for a bottom border. How could I do this for 1) all color sections; and 2) specific color sections using CSS? Thanks!

    #1128428

    Hey mhiller,

    You can apply that to all sections using this CSS:

    .avia-section {
      border-bottom:1px solid red;
    }

    Or to a specific section using the ID which you have added in the element options:

    #your-id {
      border-bottom:1px solid red;
    }

    Best regards,
    Rikard

    #1128457

    Worked Great. Thanks!!

    #1128532

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Add 1px bottom border to Color Section’ is closed to new replies.