Ir para conteúdo
  • 0

Alguem altera meu top-level igual a este? '-'


Gadreel

Pergunta

Tipo o meu tá cm os nome verde é tals o (PADRÃO)


Queria que alguém que manja-se dos paranaue deixa-se nesse style pra mim se não for pedir muito '-'



140411034142301772.png



MEU SCRIPT TÁ ASSIM \/



<div id="Themeboxes">
<?php
$skills = $SQL->query('SELECT * FROM players WHERE deleted = 0 AND group_id < '.$config['site']['players_group_id_block'].' AND account_id != 1 ORDER BY level DESC LIMIT 5');
?>
<style type="text/css" media="all">
.Toplevelbox {
top: -4px;
position: relative;
margin-bottom: 10px;
width: 180px;
height: 200px;
}
.top_level {
position: absolute;
top: 29px;
left: 6px;
height: 160px;
width: 168px;
z-index: 20;
text-align: center;
padding-top: 6px;
font-family: Tahoma, Geneva, sans-serif;
font-size: 9.2pt;
color: black;
font-weight: bold;
text-align: right;
text-decoration: inherit;
text-shadow: 0.1em 0.1em #333
}

#Topbar a {
text-decoration: none;
cursor: auto;
}
a.topfont {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
color: #00FF00;
text-decoration: none
}
a:hover.topfont {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
color: #F0F8FF;
text-decoration:none
}
</style>

<div id="Topbar" class="Toplevelbox" style="background-image:url(<?PHP echo $layout_name; ?>/images/top_level.png);">
<div class="top_level" style="background:url(<?PHP echo $layout_name; ?>/images/bg_top.png)" align=" ">
<?php
$a = 1;
foreach($skills as $skill) {
echo '<div align="left"><a href="?subtopic=characters&name='.$skill['name'].'" class="topfont">
<font color="#CCC">    '.$a.' - </font>'.$skill['name'].'
<br>
<small><font color="white">      Level: ('.$skill['level'].')</font></small>
<br>
</a>
</div>';
$a++;
}
?>
<div class="Bottom" style="background-image:url(<?PHP echo $layout_name; ?>/images/general/box-bottom.gif); top: 159px;; left:-5px;">
</div>
</div>
</div>

Link para o comentário
Compartilhar em outros sites

Posts Recomendados

  • 0

Opa, desculpe a demora

 

Como ficou:

 

 

7vW78yK.jpg

 

 

 

Primeiramente, salve as seguintes imagens na pasta 'layouts\tibiacom\images\themeboxes'

http://belezoka.servegame.com/images/top_level.png

http://belezoka.servegame.com/images/bg_top.png

 

Agora, adicione isso no seu 'configs/config.php'

$config['site']['players_group_id_block'] = '4';
Onde 3 = o group ID que será bloqueado, 2 Tutor, 3 Senior Tutor, 4 GM, 5 CM, 6 God (exemplo)

 

Depois, adicione isso no seu 'layouts\tibiacom\basic.css'

 

 

 


.Toplevelbox {
  position: relative;
  margin-bottom: 10px;
  top: -4px;
  width: 180px;
  height: 200px;
}
.top_level {
	position: absolute;
	top: 30px;
	left: 6px;
	height: 155px;
	width: 168px;
	z-index: 20;
	text-align: center;
	padding-top: 3px;
}
a.topfont {
	font-family: Verdana, Arial, Helvetica; 
	font-size: 11px; 
	color: white;
	text-decoration: none;
	font-weight:strong;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.9);
}
a:hover.topfont {
	font-family: Verdana, Arial, Helvetica; 
	font-size: 12px;  
	color: #CCC; 
	text-decoration:none
}

 

 

 

E finalmente, adicione no local adequado do seu layout.php

 

 

 

		<div id="Themeboxes">
<div id="Topbar" class="Toplevelbox" style="background-image:url(<?PHP echo $layout_name; ?>/images/themeboxes/toplevel/top_level.png);">
    <div class="top_level" style="background:url(<?PHP echo $layout_name; ?>/images/themeboxes/toplevel/bg_top.png)" align="left">
	
	<?php 
$skills = $SQL->query('SELECT * FROM players WHERE deleted = 0 AND group_id < '.$config['site']['players_group_id_block'].' AND account_id != 1 ORDER BY level DESC LIMIT 5');

    $a = 1;
    foreach($skills as $skill) {
	echo '<div align="left"><a href="index.php?subtopic=characters&name='.$skill['name'].'" class="topfont"><b><font color="black">     '.$a.' - </font></b> '.$skill['name'].' <br/><small><b><font color="white">      Level: ('.$skill['level'].')</font></b></small><br/></a></div>';
      $a++;
    }
	
	
	?>

  </div>
    <div class="Bottom" style="background-image:url(<?PHP echo $layout_name; ?>/images/general/box-bottom.gif);"></div>
  </div> 

 

 

 

Boa sorte :)

Editado por MatheusGrilo
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...