Site logo

Archived topic

Blog Posts Archive: border and shadow for the boxes

4 replies · Started by Rafael on December 16, 2021

Viewing posts 1–5 of 5

Dear GP-Team,

probably ist for you a very simple question. I want to have borders in the boxes of the blog posts. I could obtain the shadows with this code but I can't change the border-color ( there is no color at all ). My code is:
.archive .inside-article,
.blog .inside-article {

padding: 50px;
border-color: black;
border-radius: 25px;
border: 15px #8e8f92;
box-shadow: 2px 2px #c9c9c9;
}

box-shadow works but no border-color. I tried with border: black; too but it didn't work.

Thank you very much.

Rafael

Hi there,

you have to set a border style.
This line:

border: 15px #8e8f92;

change to:

border: 15px solid #8e8f92;

Hi David,

I knew it was a easy question!

Thank you very much!

It´s resolved

Glad to be of help!!

This archived topic is closed to new replies.