[Support request] Create Border on Container

Home Forums Support [Support request] Create Border on Container

Home Forums Support Create Border on Container

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

    I am trying to create 1px border around the container area of 900px

    #691080
    Leo
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    .site-content {
        border: 1px solid #000;
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Let me know if this helps 🙂

    #1540498
    Ryan

    hey how do I edit this CSS to only have the border show up on the sides and not on top and bottom?

    #1540574
    Leo
    Staff
    Customer Support

    Replace:
    border: 1px solid #000;

    with:

    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.