Elizabeth Ann Seton - Lake Ridge, VA

Homepage - Mobile - Seas Spotlight posts have the line and it's oddly off to the right. Is it a right padding issue?

Assigned to
Kyle Sullivan, Web Development at Diocesan Kyle S.
Notes
They haven't brought it up yet, but I'd like to fix it before they bring it up. 

Thanks!

Comments & Events

Kyle Sullivan, Web Development at Diocesan
First, I centered the ::after lines with the following.
            .wp-show-posts-entry-header > h3 {
              font-family: $Lustria;
              font-weight: 600;
              position: relative;
              a {
                color: rgba($secondary, 0.85);
                &:hover, &:focus {
                  color: $secondary;
                  font-weight: 700; }
                &::after {
                  position: absolute;
                  content: "";
                  border-bottom: 1px solid $secondary;
                  width: 215px;
                  left: 50%;
                  transform: translateX(-50%);
                  margin: 0 auto;
                  bottom: -5px; }
…

And here's the second fix I did. It removes the extra “white space” around the entries in the SEAS Spotlight.
      .wp-show-posts-columns#wpsp-1526 {
        justify-content: space-evenly;
        margin: 0;
        .wp-show-posts-single {
          width: 30%;
          @media screen and (max-width: 900px){
            width: auto; }
…
Kyle Sullivan, Web Development at Diocesan
Kyle Sullivan completed this to-do.