I'm trying to adapt the Techtree.tpl. There should be 2 explanations next to each other. I've already tried a few things. But unfortunately without success.
Display All
I hope you can give me a tip. Thank you
Brainfuck Source Code
- .techm {
- margin: 5px 0 0 5px;
- min-height: 240px;
- min-width: 172px;
- float: left; <-----------?????????
- width: 32.5%;
- padding: 3px;
- box-shadow: 0 0px 10px 2px rgba( 31, 38, 135, 0.37 );
- backdrop-filter: blur( 0.5px );
- transform: translate3d(0, 0, 0);
- -webkit-backdrop-filter: blur( 0.5px );
- border: 1px solid rgba( 255, 255, 255, 0.18 );
- }
Source Code: Techtree.tpl
- <div class="techm d-none flex-column align-items-center fs-12 px-2 my-2 mx-auto {if ($elementID < 100)}h0{elseif ($elementID < 200)}h100{elseif ($elementID < 300)}h200{elseif ($elementID < 500)}h400{elseif ($elementID < 600)}h500{elseif ($elementID < 700)}h600{/if}">
- <span>
- <a class="text-decoration-none color-yellow" href="#" onclick="return Dialog.info({$elementID})">{$LNG.tech.$elementID}</a>
- </span>
I hope you can give me a tip. Thank you