unlock the case

by tomarriola

HTML

<!--
  CrimeScene.com — Updated div.one_evidence.promo HTML fragment (v3)
  Only change from original: img src paths point to new 900x160 PNG banners.
  Upload crimescene-pro-banner-900x160.png and crimescene-edu-banner-900x160.png
  to /wp-content/themes/csi/images/ before deploying.
-->

<div class="one_evidence promo">
  <i class="fa-solid fa-lock"></i>
  <div style="margin: 14px 0px 12px 0px;">Unlock All the Evidence</div>
  <div class="level_buttons">
    <a href="/crime-scene-pro/"><img src="/wp-content/themes/csi/images/crimescene-pro-banner-900x160.png" alt="Crime Scene PRO"></a>
    <a href="/crime-scene-pro/"><img src="/wp-content/themes/csi/images/crimescene-edu-banner-900x160.png" alt="Crime Scene EDU"></a>
  </div>
  <div style="margin: 12px 0px;">
    <a class="button black_yellow_black" href="/crime-scene-pro/">Details<span> </span><i class="fa-solid fa-circle-chevron-right fa-sm"></i></a>
  </div>
</div>

CSS

/*
 * CrimeScene.com — Unlock All Evidence Block: Updated Style (v3)
 * Session: May 2026
 *
 * Drop into child theme stylesheet after style.css, or wp_enqueue_scripts.
 * Replaces yellow caution-tape promo with dark charcoal brand style.
 * Spans 2 grid columns for breathing room.
 */

/* ── PROMO BLOCK CONTAINER ──────────────────────────── */
div.one_evidence.promo {
  /* Span 2 of the 6 grid columns */
  width: calc((100% / 6) * 2 - 2%);

  flex-direction:  column;
  justify-content: center;
  align-items:     center;
  padding:         36px 20px 30px;

  /* Dark charcoal — removes caution tape */
  background:       #191919;
  background-image: none !important;

  /* Yellow left accent bar */
  border-top:    none;
  border-bottom: none;
  border-left:   4px solid #ffff00;
  border-right:  none;

  text-align: center;
  color:      #ffffff;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* ── LOCK ICON — use Font Awesome flat padlock ──────── */
div.one_evidence.promo i.fa-lock {
  font-size:     2.4rem;
  color:         #ffff00;
  display:       block;
  margin-bottom: 14px;
  /* Remove any inherited transform that could skew it */
  transform:     none;
  font-style:    normal;
}

/* ── "UNLOCK ALL THE EVIDENCE" TEXT ────────────────── */
div.one_evidence.promo > div:first-of-type {
  font-size:      0.78rem;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          #ffffff;
  margin:         0 0 18px 0 !important;
}

/* ── LEVEL BUTTONS WRAPPER ──────────────────────────── */
div.one_evidence.promo div.level_buttons {
  width:           100%;
  display:         flex;
  flex-direction:  column;
  gap:             12px;
  margin-bottom:   22px;
  padding:         0 20px;    /* internal side padding so banners don't touch edges */
  box-sizing:      border-box;
}

div.one_evidence.promo div.level_buttons a {
  display:     block;
  width:       100%;
 ...