[Resolved] Seller Theme: Change Border or Container Line Color

Home Forums Support [Resolved] Seller Theme: Change Border or Container Line Color

Home Forums Support Seller Theme: Change Border or Container Line Color

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1258861
    Alex

    How do I change the color of the border (or container) lines?

    Thanks in advance.

    #1259300
    David
    Staff
    Customer Support

    Hi there,

    the borders are added using CSS – go to Customizer > Additional CSS. There are a few CSS rules – the two you will want to change i have commented below:

    .woocommerce ul.products li.product a img,
    .woocommerce div.product div.images img {
        padding: 3px;
        border: 1px solid rgba(0, 0, 0, 0.1); /* This rgba color for borders around products */
        box-sizing: border-box
    }
    
    .separate-containers .inside-article,
    .separate-containers .sidebar .widget,
    .site-header,
    .main-navigation:not(.slideout-navigation),
    .site-footer {
        border: 1px solid rgba(0, 0, 0, 0.08) /* This RBGA value for the main containers */
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.