Skip to content

Instantly share code, notes, and snippets.

@jonschr
Created July 10, 2024 04:01
Show Gist options
  • Save jonschr/cfb546fa05eb87132b760604af323d4d to your computer and use it in GitHub Desktop.
Save jonschr/cfb546fa05eb87132b760604af323d4d to your computer and use it in GitHub Desktop.
Add sold out banner
/* Floor Plans Sold Out Red Banner */
.floorplans-loop .type-floorplans.no-units-available:before {
background: #E4440F;
content: "Sold out";
top: 50%;
left: 50%;
position: absolute;
z-index: 10;
padding: 12px 17px;
color: white;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 0.05em;
line-height: 1;
border-radius: 3px;
transform: translateX( -50% ) translateY( -50% );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment