Changing grid border / box shadow color

  • Hi Taras! Thank you for all your help so far. I’ve learned so much with your support.

    I would like to change the grid black borders / box shadows to white since my background is all white. I managed to change the borders of the 2 items below but I want to change the border color for the featured post tile to white too.

    /* change home tile borders to white*/
    .th-inner-border{
      -webkit-box-shadow:0 0 0 2px #ffffff;
              box-shadow:0 0 0 2px #ffffff;
    }
    /*change header border to white*/
    .site-header{
      -webkit-box-shadow:0 0 0 2px #ffffff;
              box-shadow:0 0 0 2px #ffffff;
    }

    The blog I need help with is: (visible only to logged in users)

  • Hello,
    You are very welcome! :)

    For the Featured Content section, please use the following custom CSS:

    
    .featured-content .hentry-overlay::after {
        -webkit-box-shadow: inset 0 2px 0 2px #ffffff;
        box-shadow: inset 0 2px 0 2px #ffffff;
    }
    

    Please let me know if you have any additional questions.

    Kind regards,
    Taras

  • It worked perfectly. A million thanks!

  • You are always welcome! :)

  • The topic ‘Changing grid border / box shadow color’ is closed to new replies.