Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to modify this so the bottom isn't so dark Reply To: How to modify this so the bottom isn't so dark

#265540
Jemima Abu
Participant

Maybe you could try using just one property for the box-shadow.
Instead of

.shadow {
box-shadow:0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

You could try something like

.shadow {
    box-shadow: 1px 3px 6px 1px rgba(41, 40, 40, 0.22);
}