• Priority: 0
  • Status: Closed
  • Theme: Alysum
  • Assigned To: Fred
  • Private: No
  • Open Date: 22.06.21, 13:11
  • Opened by: caravntrader
  • Closed by: Anonymous Submitter
  • Closed on:
  • Reason: Not a bug

Ticket #21788 - Header item separator

How to display separator correctly, two of them are missed.

Attachments:

Bildschirmfoto 2021-06-22 um ... (16.3 KiB)

Comments

Fred 22 Jun 2021, 16:54

Fixed

caravntrader 22 Jun 2021, 17:24

Great, thank you. Is it possible to get one at the end?

Fred 22 Jun 2021, 20:46

try this

#header .pkheaderitems > ul {position:relative}
#header .pkheaderitems > ul:after {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: rgba(193, 178, 173, .35);
    right: 40px;
    top: 50%;
    transform: translateY(-50%)
}