Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/class_language.php on line 201
Avatares circulares
AndresXZ09   28 Apr, 2015, 5:00 pm
#1
Hola

He estado intentando que los avatares se vean circulares, seguí el tutorial http://community.mybb.com/thread-166378.html pero sigo sin conseguirlo.

Intente añadiendo un <div class="author_avatar"> en el postbit y no funciono, también intente con añadirlo en la plantilla de postbit_avatar y tampoco.

Aquí el código que utilice en postbit_avatar

Código:
<div class="author_avatar"><a href="{$post['profilelink_plain']}"><img src="{$post['avatar']}" alt="" {$avatar_width_height} /></a></div>

Aquí el area donde aparece el código del avatar en el postbit

Código:
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
        <span class="smalltext"><br />
            {$post['useravatar']}<br />
{$post['usertitle']}<br />
            {$post['userstars']}
            {$post['groupimage']}

           
</div>

No sé que sucede la verdad, espero puedan echarme una mano.

Gracias por su tiempo Smile
Última modificación: 28 Apr, 2015, 5:06 pm por AndresXZ09.
Finer   28 Apr, 2015, 5:35 pm
#2
Es porque tenes que poner en tu css img
Código PHP:
<?php 
<div class="author_avatar"><a href="{$post['profilelink_plain']}"><img src="{$post['avatar']}" alt="" {$avatar_width_height} /></a></div>

Código PHP:
<?php 
.author_avatar {
border-radius: 100%;
}
.
author_avatar img {
border-radius: 100%;
}
AndresXZ09   28 Apr, 2015, 5:41 pm
#3
Claro que lo había puesto, de hecho lo puse en todos los estilos.

Al final lo solucione agregando style="border-radius: 50%;" Tongue
XEDE   28 Apr, 2015, 7:18 pm
#4
Otra forma que tenes es como dejaron en este tutorial [1.8] Agregar Efecto Circulo al Avatar y si ves en una de mis respuestas ademas de eso podes agregarle un efecto de crecimiento/movimiento al poner el mouse encima que queda bastante bien a mi gusto
  
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.