marco789 New Member Nov 12, 2021 #1 wie währe es, wenn man noch ein pokal vergibt für den ersten und zweiten und dritten platzt? so in der art vielleicht????
wie währe es, wenn man noch ein pokal vergibt für den ersten und zweiten und dritten platzt? so in der art vielleicht????
Basti Administrator Staff member Nov 13, 2021 #2 Es gibt ein tag in den files, {$rank} In the table_* dateien mach dir ein element HTML: <span id="rank-icon-{$rank}"></span> Mit css ziele auf diese 3 id's CSS: #rank-icon-1 { background-image: ('img/trophy-1.png'); width: 30px; height: 40px; } Wiederhole das fuer #rank-icon-2 und #rank-icon-3 und passe die pfad/datei namen an und width/height halt so gross wie das bild ist
Es gibt ein tag in den files, {$rank} In the table_* dateien mach dir ein element HTML: <span id="rank-icon-{$rank}"></span> Mit css ziele auf diese 3 id's CSS: #rank-icon-1 { background-image: ('img/trophy-1.png'); width: 30px; height: 40px; } Wiederhole das fuer #rank-icon-2 und #rank-icon-3 und passe die pfad/datei namen an und width/height halt so gross wie das bild ist
marco789 New Member Nov 14, 2021 #3 geht nicht ??? habe: <span id="rank-icon-{$rank}"></span> in table_top_row.html eingefügt! dann in user.css eingefügt: warum geht das nicht??? mache ich was verkehrt?
geht nicht ??? habe: <span id="rank-icon-{$rank}"></span> in table_top_row.html eingefügt! dann in user.css eingefügt: warum geht das nicht??? mache ich was verkehrt?
Mark Administrator Staff member Nov 14, 2021 #4 span is inline element, so you may need to make it inline-block. Also you are mssing the url segment on your background-image declaration this should work: Code: background-image: url('/skins/default/images/pokal1.png'); width: 100px; height: 174px; display: inline-block; Last edited: Nov 14, 2021
span is inline element, so you may need to make it inline-block. Also you are mssing the url segment on your background-image declaration this should work: Code: background-image: url('/skins/default/images/pokal1.png'); width: 100px; height: 174px; display: inline-block;
Basti Administrator Staff member Nov 14, 2021 #5 oh yea i forgot inline block and the most important "url" bit p.s, no need for full img path, just images/pokal1.png is enough, never input full urls, can easy become a nightmare if you change domains, or skin etc
oh yea i forgot inline block and the most important "url" bit p.s, no need for full img path, just images/pokal1.png is enough, never input full urls, can easy become a nightmare if you change domains, or skin etc