For the “Gatherings, Coaching & Resources” services section on this homepage, I am trying to center the image/icon and text within the card, and have successfully used custom css to center align the text, but nothing I do will change the alignment of the image.
The current custom css (with everything left aligned) for the section is:
img {
height: 100px;
}
.services .btn:focus,
.services .btn:hover {
background: #4d4d4e;
border-color: #4d4d4e;
}
Adding the following code works to center the text within each card, but nothing I have tried for the image works:
.services {
text-align: center;
}
Any thoughts? Thank you!
