• How do you increase (or darken) the shadow on the boxes on the main page?

    Couldn’t figure it out in the editor.

    Thanks,
    Corey

Viewing 1 replies (of 1 total)
  • Theme Author Srini G

    (@srinig)

    You will find this code in style.css under .hentry (line 760-762)

    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 0.5rem;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 0 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 0.5rem;

    You can perhaps increase the value of ‘0.1’ inside rgba to maybe ‘0.5’, that’s the transparency. You can also increase 0.5rem to a higher value to increase the size of the shadow if you want.

    Please use child themes or custom css to make these changes. If you directly modify the style.css file, you’ll lose all your changes during the next update of the theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Increasing Shadow on Main Page’ is closed to new replies.