1 |
|
---|---|
Posted by | Box Toppers? |
Anxiety Prime™ [11.25.22 RLC] (#191357) View Forum Posts Posted on 2024-01-03 17:41:39 |
Does anyone know how to make box toppers? :) I can't figure it out, i'll pay someone to show me. 0 players like this post! Like? |
grassman 🌱 | albino (#282830) View Forum Posts Posted on 2024-01-07 22:21:38 |
ive seen box toppers coded by having a div class "box" which has position: relative, with a pusedo element "box topper" inside which has position: absolute heres the code i use: <*div class="box"> <*div class="box-topper"><*/div> Box text here. <*/div> .box { position: relative; } .box-topper { content: url('image url here'); position: absolute; top: -50px; right: -50px; z-index: 2; } obviously you may need to adjust a little, but it should work 1 player likes this post! Like? Edited on 07/01/24 @ 22:22:00 by grassman ☀️ (#282830) |
Anxiety Prime™ [11.25.22 RLC] (#191357) View Forum Posts Posted on 2024-01-07 23:18:13 |
1 |
---|