WINTXCODERS

Programación => Desarrollo web => Mensaje iniciado por: AkaMoab en Julio 16, 2017, 02:21:56 AM

Título: SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 16, 2017, 02:21:56 AM
Buenas a todos, alguien sabe como poner la imagen cuadrada en SMF? Cuando pongo un post sale la imagen del usuario en redondo y no me gusta, como la teneis aqui https://gyazo.com/b9443e8294f6ca66a7a1c994c86814b3?token=0a0bc63cf6d53095a660509452139823 asi la quiero yo cuando pongo un post, que se vea asi alguien sabe como se hace o donde se pone?


PD: Eso del usuario verificado es un mod o algo?

Saludos a todos, a ver si alguien me da respuesta.  ;)
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 16, 2017, 12:37:22 PM
You are not allowed to view links. Register or Login
Buenas a todos, alguien sabe como poner la imagen cuadrada en SMF? Cuando pongo un post sale la imagen del usuario en redondo y no me gusta, como la teneis aqui https://gyazo.com/b9443e8294f6ca66a7a1c994c86814b3?token=0a0bc63cf6d53095a660509452139823 asi la quiero yo cuando pongo un post, que se vea asi alguien sabe como se hace o donde se pone?


PD: Eso del usuario verificado es un mod o algo?

Saludos a todos, a ver si alguien me da respuesta.  ;)

Hola, está modificado directamente desde el css si dejas el link podríamos ayudarte de una manera mas rápida y sencilla
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 16, 2017, 02:33:31 PM
El index.css te paso? Como te lo paso? no me deja subir un documento block de notas o lo pongo por código?
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 16, 2017, 03:44:02 PM
You are not allowed to view links. Register or Login
El index.css te paso? Como te lo paso? no me deja subir un documento block de notas o lo pongo por código?

La dirección de el foro por ejemplo o una imagen de como son tus avatares actualmente
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 16, 2017, 03:56:32 PM
Te puse un apartado de prueba para que veas como me veo mi foto en el post, lo quiero como lo tienes aqui, el primer gyazo del post ahí lo ves, quiero la imagen cuadrada en el post no redonda.

Y ya que estamos si me puedes decir tambien en el encabezado de la página ves que pone de titulo A&O Rolplay arriba del menu a la izquierda ahí quiero poner un logo pero no se donde.

PD: Respondeme a las 2 si puedes, pero me interesa mas la primera.
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 16, 2017, 05:13:36 PM
You are not allowed to view links. Register or Login
https://aobgaming.000webhostapp.com/index.php?board=4.0
Te puse un apartado de prueba para que veas como me veo mi foto en el post, lo quiero como lo tienes aqui, el primer gyazo del post ahí lo ves, quiero la imagen cuadrada en el post no redonda.

Y ya que estamos si me puedes decir tambien en el encabezado de la página ves que pone de titulo A&O Rolplay arriba del menu a la izquierda ahí quiero poner un logo pero no se donde.

PD: Respondeme a las 2 si puedes, pero me interesa mas la primera.

Podrías adjuntar tu display.template.php
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 16, 2017, 10:14:05 PM
Como se hace eso? No se a que te refieres.
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 17, 2017, 01:40:04 AM
You are not allowed to view links. Register or Login
Como se hace eso? No se a que te refieres.

Copia el código de el archivo display.template.php y pégalo aquí
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 17, 2017, 02:55:35 PM
<?php
/**
 * Simple Machines Forum (SMF)
 *
 * @package SMF
 * @author Simple Machines
 * @copyright 2011 Simple Machines
 * @license http://www.simplemachines.org/about/smf/license.php BSD
 *
 * @version 2.0
 */

function template_main()
{
global $context$settings$options$txt$scripturl$modSettings;

// Let them know, if their report was a success!
if ($context['report_sent'])
{
echo '
<div class="windowbg" id="profile_success">
'
$txt['report_sent'], '
</div>'
;
}

// Show the anchor for the top and for the first message. If the first message is new, say so.
echo '
<a id="top"></a>
<a id="msg'
$context['first_message'], '"></a>'$context['first_new_message'] ? '<a id="new"></a>' '';

// Is this topic also a poll?
if ($context['is_poll'])
{
echo '
<div id="poll">
<div class="cat_bar">
<h3 class="catbg">
<span class="ie6_header floatleft"><img src="'
$settings['images_url'], '/topic/'$context['poll']['is_locked'] ? 'normal_poll_locked' 'normal_poll''.gif" alt="" class="icon" /> '$txt['poll'], '</span>
</h3>
</div>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="content" id="poll_options">
<h4 id="pollquestion">
'
$context['poll']['question'], '
</h4>'
;

// Are they not allowed to vote but allowed to view the options?
if ($context['poll']['show_results'] || !$context['allow_vote'])
{
echo '
<dl class="options">'
;

// Show each option with its corresponding percentage bar.
foreach ($context['poll']['options'] as $option)
{
echo '
<dt class="middletext'
$option['voted_this'] ? ' voted' '''">'$option['option'], '</dt>
<dd class="middletext statsbar'
$option['voted_this'] ? ' voted' '''">';

if ($context['allow_poll_view'])
echo '
'
$option['bar_ndt'], '
<span class="percentage">'
$option['votes'], ' ('$option['percent'], '%)</span>';

echo '
</dd>'
;
}

echo '
</dl>'
;

if ($context['allow_poll_view'])
echo '
<p><strong>'
$txt['poll_total_voters'], ':</strong> '$context['poll']['total_votes'], '</p>';
}
// They are allowed to vote! Go to it!
else
{
echo '
<form action="'
$scripturl'?action=vote;topic='$context['current_topic'], '.'$context['start'], ';poll='$context['poll']['id'], '" method="post" accept-charset="'$context['character_set'], '">';

// Show a warning if they are allowed more than one option.
if ($context['poll']['allowed_warning'])
echo '
<p class="smallpadding">'
$context['poll']['allowed_warning'], '</p>';

echo '
<ul class="reset options">'
;

// Show each option with its button - a radio likely.
foreach ($context['poll']['options'] as $option)
echo '
<li class="middletext">'
$option['vote_button'], ' <label for="'$option['id'], '">'$option['option'], '</label></li>';

echo '
</ul>
<div class="submitbutton">
<input type="submit" value="'
$txt['poll_vote'], '" class="button_submit" />
<input type="hidden" name="'
$context['session_var'], '" value="'$context['session_id'], '" />
</div>
</form>'
;
}

// Is the clock ticking?
if (!empty($context['poll']['expire_time']))
echo '
<p><strong>'
, ($context['poll']['is_expired'] ? $txt['poll_expired_on'] : $txt['poll_expires_on']), ':</strong> '$context['poll']['expire_time'], '</p>';

echo '
</div>
<span class="botslice"><span></span></span>
</div>
</div>
<div id="pollmoderation">'
;

// Build the poll moderation button array.
$poll_buttons = array(
'vote' => array('test' => 'allow_return_vote''text' => 'poll_return_vote''image' => 'poll_options.gif''lang' => true'url' => $scripturl '?topic=' $context['current_topic'] . '.' $context['start']),
'results' => array('test' => 'show_view_results_button''text' => 'poll_results''image' => 'poll_results.gif''lang' => true'url' => $scripturl '?topic=' $context['current_topic'] . '.' $context['start'] . ';viewresults'),
'change_vote' => array('test' => 'allow_change_vote''text' => 'poll_change_vote''image' => 'poll_change_vote.gif''lang' => true'url' => $scripturl '?action=vote;topic=' $context['current_topic'] . '.' $context['start'] . ';poll=' $context['poll']['id'] . ';' $context['session_var'] . '=' $context['session_id']),
'lock' => array('test' => 'allow_lock_poll''text' => (!$context['poll']['is_locked'] ? 'poll_lock' 'poll_unlock'), 'image' => 'poll_lock.gif''lang' => true'url' => $scripturl '?action=lockvoting;topic=' $context['current_topic'] . '.' $context['start'] . ';' $context['session_var'] . '=' $context['session_id']),
'edit' => array('test' => 'allow_edit_poll''text' => 'poll_edit''image' => 'poll_edit.gif''lang' => true'url' => $scripturl '?action=editpoll;topic=' $context['current_topic'] . '.' $context['start']),
'remove_poll' => array('test' => 'can_remove_poll''text' => 'poll_remove''image' => 'admin_remove_poll.gif''lang' => true'custom' => 'onclick="return confirm(\'' $txt['poll_remove_warn'] . '\');"''url' => $scripturl '?action=removepoll;topic=' $context['current_topic'] . '.' $context['start'] . ';' $context['session_var'] . '=' $context['session_id']),
);

template_button_strip($poll_buttons);

echo '
</div>'
;
}

// Does this topic have some events linked to it?
if (!empty($context['linked_calendar_events']))
{
echo '
<div class="linked_events">
<div class="title_bar">
<h3 class="titlebg headerpadding">'
$txt['calendar_linked_events'], '</h3>
</div>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="content">
<ul class="reset">'
;

foreach ($context['linked_calendar_events'] as $event)
echo '
<li>
'
, ($event['can_edit'] ? '<a href="' $event['modify_href'] . '"> <img src="' $settings['images_url'] . '/icons/modify_small.gif" alt="" title="' $txt['modify'] . '" class="edit_event" /></a> ' ''), '<strong>'$event['title'], '</strong>: '$event['start_date'], ($event['start_date'] != $event['end_date'] ? ' - ' $event['end_date'] : ''), '
</li>'
;

echo '
</ul>
</div>
<span class="botslice"><span></span></span>
</div>
</div>'
;
}

// Build the normal button array.
$normal_buttons = array(
'reply' => array('test' => 'can_reply''text' => 'reply''image' => 'reply.gif''lang' => true'url' => $scripturl '?action=post;topic=' $context['current_topic'] . '.' $context['start'] . ';last_msg=' $context['topic_last_message'], 'active' => true),
'add_poll' => array('test' => 'can_add_poll''text' => 'add_poll''image' => 'add_poll.gif''lang' => true'url' => $scripturl '?action=editpoll;add;topic=' $context['current_topic'] . '.' $context['start']),
'notify' => array('test' => 'can_mark_notify''text' => $context['is_marked_notify'] ? 'unnotify' 'notify''image' => ($context['is_marked_notify'] ? 'un' '') . 'notify.gif''lang' => true'custom' => 'onclick="return confirm(\'' . ($context['is_marked_notify'] ? $txt['notification_disable_topic'] : $txt['notification_enable_topic']) . '\');"''url' => $scripturl '?action=notify;sa=' . ($context['is_marked_notify'] ? 'off' 'on') . ';topic=' $context['current_topic'] . '.' $context['start'] . ';' $context['session_var'] . '=' $context['session_id']),
'mark_unread' => array('test' => 'can_mark_unread''text' => 'mark_unread''image' => 'markunread.gif''lang' => true'url' => $scripturl '?action=markasread;sa=topic;t=' $context['mark_unread_time'] . ';topic=' $context['current_topic'] . '.' $context['start'] . ';' $context['session_var'] . '=' $context['session_id']),
'send' => array('test' => 'can_send_topic''text' => 'send_topic''image' => 'sendtopic.gif''lang' => true'url' => $scripturl '?action=emailuser;sa=sendtopic;topic=' $context['current_topic'] . '.0'),
'print' => array('text' => 'print''image' => 'print.gif''lang' => true'custom' => 'rel="new_win nofollow"''url' => $scripturl '?action=printpage;topic=' $context['current_topic'] . '.0'),
);

// Allow adding new buttons easily.
call_integration_hook('integrate_display_buttons', array(&$normal_buttons));

// Show the page index... "Pages: [1]".
echo '
<div class="pagesection">
<div class="nextlinks">'
$context['previous_next'], '</div>'template_button_strip($normal_buttons'right'), '
<div class="pagelinks floatleft">'
$txt['pages'], ': '$context['page_index'], !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . ' &nbsp;&nbsp;<a href="#lastPost"><strong>' $txt['go_down'] . '</strong></a>' '''</div>
</div>'
;

// Show the topic information - icon, subject, etc.
echo '
<div id="forumposts">
<div class="display-info alert alert-redsy">
<h1>
'
$context['subject'], '
</h1>
<ul class="reset"> 
<li class="h4"><i class="fa fa-comments fa-fw"></i>'
$context['real_num_replies'] .' '$txt['replies'] .'</li>
<li class="h4"><i class="fa fa-eye fa-fw"></i>'
$context['num_views'], ' '$txt['views'] .'</li>
</ul>
</div>'
;

if (!empty($settings['display_who_viewing']))
{
echo '
<p id="whoisviewing" class="smalltext">'
;

// Show just numbers...?
if ($settings['display_who_viewing'] == 1)
echo count($context['view_members']), ' 'count($context['view_members']) == $txt['who_member'] : $txt['members'];
// Or show the actual people viewing the topic?
else
echo empty($context['view_members_list']) ? '0 ' $txt['members'] : implode(', '$context['view_members_list']) . ((empty($context['view_num_hidden']) || $context['can_moderate_forum']) ? '' ' (+ ' $context['view_num_hidden'] . ' ' $txt['hidden'] . ')');

// Now show how many guests are here too.
echo $txt['who_and'], $context['view_num_guests'], ' '$context['view_num_guests'] == $txt['guest'] : $txt['guests'], $txt['who_viewing_topic'], '
</p>'
;
}

echo '
<form action="'
$scripturl'?action=quickmod2;topic='$context['current_topic'], '.'$context['start'], '" method="post" accept-charset="'$context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;" onsubmit="return oQuickModify.bInEditMode ? oQuickModify.modifySave(\'' $context['session_id'] . '\', \'' $context['session_var'] . '\') : false">';

$ignoredMsgs = array();
$removableMessageIDs = array();
$alternate false;

// Get all the messages...
while ($message $context['get_message']())
{
$ignoring false;
$alternate = !$alternate;
if ($message['can_remove'])
$removableMessageIDs[] = $message['id'];

// Are we ignoring this message?
if (!empty($message['is_ignored']))
{
$ignoring true;
$ignoredMsgs[] = $message['id'];
}

// Show the message anchor and a "new" anchor if this message is new.
if ($message['id'] != $context['first_message'])
echo '
<a id="msg'
$message['id'], '"></a>'$message['first_new'] ? '<a id="new"></a>' '';

echo '
<div class="body_message">
<div class="row">'
;

// Show information about the poster of this message.
echo '
<div class="poster col-md-2">'
;

// Show avatars, images, etc.?
if (!empty($settings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image']))
{
echo '
<a href="'
$scripturl'?action=profile;u='$message['member']['id'], '">
<img src="'
$message['member']['avatar']['href'], '" class="img-thumbnail img-circle" alt="*" />
</a>'
;
}
else
{
echo'
<a href="'
$scripturl'?action=profile;u='$message['member']['id'], '">
<img src="'
,$settings['images_url'] ,'/noavatar.png" class="img-thumbnail img-circle" alt="*" /> 
</a>'
;
}

echo'
<h4>'
;

// Show online and offline buttons?
if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest'])
echo '
'
$context['can_send_pm'] ? '<a href="' $message['member']['online']['href'] . '" title="' $message['member']['online']['label'] . '">' '''<img src="'$message['member']['online']['image_href'], '" alt="'$message['member']['online']['text'], '" />'$context['can_send_pm'] ? '</a>' '';

// Show a link to the member's profile.
echo '
'
$message['member']['link'], '
</h4>
<ul class="reset smalltext" id="msg_'
$message['id'], '_extra_info">';



// Show the member's custom title, if they have one.
if (!empty($message['member']['title']))
echo '
<li class="title">'
$message['member']['title'], '</li>';

// Don't show these things for guests.
if (!$message['member']['is_guest'])
{

// Show the stars if they are not in a group.
echo '
<li class="stars">'
$message['member']['group_stars'], '</li>';

// Show how many posts they have made.
if (!isset($context['disabled_fields']['posts']))
echo '
<li class="postcount"><img src="'
,$settings['images_url'] ,'/postcount.png" /> '$message['member']['posts'], '</li>';

// Is karma display enabled?  Total or +/-?
if ($modSettings['karmaMode'] == '1')
echo '
<li class="karma"><img src="'
,$settings['images_url'] ,'/karma.png" />  '$message['member']['karma']['good'] - $message['member']['karma']['bad'], '</li>';
elseif ($modSettings['karmaMode'] == '2')
echo '
<li class="karma"><img src="'
,$settings['images_url'] ,'/karma.png" />  +'$message['member']['karma']['good'], '/-'$message['member']['karma']['bad'], '</li>';

// Is this user allowed to modify this member's karma?
if ($message['member']['karma']['allow'])
echo '
<li class="karma_allow">
<a href="'
$scripturl'?action=modifykarma;sa=applaud;uid='$message['member']['id'], ';topic='$context['current_topic'], '.' $context['start'], ';m='$message['id'], ';'$context['session_var'], '='$context['session_id'], '">'$modSettings['karmaApplaudLabel'], '</a>
<a href="'
$scripturl'?action=modifykarma;sa=smite;uid='$message['member']['id'], ';topic='$context['current_topic'], '.'$context['start'], ';m='$message['id'], ';'$context['session_var'], '='$context['session_id'], '">'$modSettings['karmaSmiteLabel'], '</a>
</li>'
;

// Show the member's gender icon?
if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '' && !isset($context['disabled_fields']['gender']))
echo '
<li class="gender">'
$txt['gender'], ': '$message['member']['gender']['image'], '</li>';

// Show their personal text?
if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
echo '
<li class="blurb">'
$message['member']['blurb'], '</li>';

// Any custom fields to show as icons?
if (!empty($message['member']['custom_fields']))
{
$shown false;
foreach ($message['member']['custom_fields'] as $custom)
{
if ($custom['placement'] != || empty($custom['value']))
continue;
if (empty($shown))
{
$shown true;
echo '
<li class="im_icons">
<ul>'
;
}
echo '
<li>'
$custom['value'], '</li>';
}
if ($shown)
echo '
</ul>
</li>'
;
}

// This shows the popular messaging icons.
if ($message['member']['has_messenger'] && $message['member']['can_view_profile'])
echo '
<li class="im_icons">
<ul>
'
, !empty($message['member']['icq']['link']) ? '<li>' $message['member']['icq']['link'] . '</li>' '''
'
, !empty($message['member']['msn']['link']) ? '<li>' $message['member']['msn']['link'] . '</li>' '''
'
, !empty($message['member']['aim']['link']) ? '<li>' $message['member']['aim']['link'] . '</li>' '''
'
, !empty($message['member']['yim']['link']) ? '<li>' $message['member']['yim']['link'] . '</li>' '''
</ul>
</li>'
;

// Show the profile, website, email address, and personal message buttons.
if ($settings['show_profile_buttons'])
{
echo '
<li class="profile">
<ul>'
;
// Don't show the profile button if you're not allowed to view the profile.
if ($message['member']['can_view_profile'])
echo '
<li><a href="'
$message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/icons/profile_sm.gif" alt="' $txt['view_profile'] . '" title="' $txt['view_profile'] . '" />' $txt['view_profile']), '</a></li>';

// Don't show an icon if they haven't specified a website.
if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website']))
echo '
<li><a href="'
$message['member']['website']['url'], '" title="' $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/www_sm.gif" alt="' $message['member']['website']['title'] . '" />' $txt['www']), '</a></li>';

// Don't show the email address if they want it hidden.
if (in_array($message['member']['show_email'], array('yes''yes_permission_override''no_through_forum')))
echo '
<li><a href="'
$scripturl'?action=emailuser;sa=email;msg='$message['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/email_sm.gif" alt="' $txt['email'] . '" title="' $txt['email'] . '" />' $txt['email']), '</a></li>';

// Since we know this person isn't a guest, you *can* message them.
if ($context['can_send_pm'])
echo '
<li><a href="'
$scripturl'?action=pm;sa=send;u='$message['member']['id'], '" title="'$message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">'$settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/im_' . ($message['member']['online']['is_online'] ? 'on' 'off') . '.gif" alt="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '" />' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>';

echo '
</ul>
</li>'
;
}
// Show the total time logged in?
if (!empty($context['user']['total_time_logged_in']))
{
echo '<li>
'
$txt['totalTimeLogged1'];

// If days is just zero, don't bother to show it.
if ($context['user']['total_time_logged_in']['days'] > 0)
echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

// Same with hours - only show it if it's above zero.
if ($context['user']['total_time_logged_in']['hours'] > 0)
echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

// But, let's always show minutes - Time wasted here: 0 minutes ;).
echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'], '</li><br />';
}
echo '</ul>';
// Any custom fields for standard placement?
if (!empty($message['member']['custom_fields']))
{
foreach ($message['member']['custom_fields'] as $custom)
if (empty($custom['placement']) || empty($custom['value']))
echo '
<li class="custom">'
$custom['title'], ': '$custom['value'], '</li>';
}

// Are we showing the warning status?
if ($message['member']['can_see_warning'])
echo '
<li class="warning">'
$context['can_issue_warning'] ? '<a href="' $scripturl '?action=profile;area=issuewarning;u=' $message['member']['id'] . '">' '''<img src="'$settings['images_url'], '/warning_'$message['member']['warning_status'], '.gif" alt="'$txt['user_warn_' $message['member']['warning_status']], '" />'$context['can_issue_warning'] ? '</a>' '''<span class="warn_'$message['member']['warning_status'], '">'$txt['warn_' $message['member']['warning_status']], '</span></li>';
}
// Otherwise, show the guest's email.
elseif (!empty($message['member']['email']) && in_array($message['member']['show_email'], array('yes''yes_permission_override''no_through_forum')))
echo '
<li class="email"><a href="'
$scripturl'?action=emailuser;sa=email;msg='$message['id'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/email_sm.gif" alt="' $txt['email'] . '" title="' $txt['email'] . '" />' $txt['email']), '</a></li>';

// Done with the information about the poster... on to the post itself.
echo '
</ul>
</div>
<div class="col-md-10">
<div class="body_content"> 
<span class="arrow-left"></span>
<div class="postarea">'
;

// If this is the first post, (#0) just say when it was posted - otherwise give the reply #.
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
<div class="btn-group navbar-right">
<button type="button" class="btn btn-primary dropdown-toggle btn-sm" data-toggle="dropdown">Actions <span class="caret"></span></button>
<ul class="dropdown-menu" role="menu"">'


// Maybe we can approve it, maybe we should?
if ($message['can_approve'])
echo '
<li class="approve_button"><a href="'
$scripturl'?action=moderate;area=postmod;sa=approve;topic='$context['current_topic'], '.'$context['start'], ';msg='$message['id'], ';'$context['session_var'], '='$context['session_id'], '">'$txt['approve'], '</a></li>';

// Can they reply? Have they turned on quick reply?
if ($context['can_quote'] && !empty($options['display_quick_reply']))
echo '
<li class="quote_button"><a href="'
$scripturl'?action=post;quote='$message['id'], ';topic='$context['current_topic'], '.'$context['start'], ';last_msg='$context['topic_last_message'], '" onclick="return oQuickReply.quote('$message['id'], ');">'$txt['quote'], '</a></li>';

// So... quick reply is off, but they *can* reply?
elseif ($context['can_quote'])
echo '
<li class="quote_button"><a href="'
$scripturl'?action=post;quote='$message['id'], ';topic='$context['current_topic'], '.'$context['start'], ';last_msg='$context['topic_last_message'], '">'$txt['quote'], '</a></li>';

// Can the user modify the contents of this post?
if ($message['can_modify'])
echo '
<li class="modify_button"><a href="'
$scripturl'?action=post;msg='$message['id'], ';topic='$context['current_topic'], '.'$context['start'], '">'$txt['modify'], '</a></li>';

// How about... even... remove it entirely?!
if ($message['can_remove'])
echo '
<li class="remove_button"><a href="'
$scripturl'?action=deletemsg;topic='$context['current_topic'], '.'$context['start'], ';msg='$message['id'], ';'$context['session_var'], '='$context['session_id'], '" onclick="return confirm(\''$txt['remove_message'], '?\');">'$txt['remove'], '</a></li>';

// What about splitting it off the rest of the topic?
if ($context['can_split'] && !empty($context['real_num_replies']))
echo '
<li class="split_button"><a href="'
$scripturl'?action=splittopics;topic='$context['current_topic'], '.0;at='$message['id'], '">'$txt['split'], '</a></li>';

// Can we restore topics?
if ($context['can_restore_msg'])
echo '
<li class="restore_button"><a href="'
$scripturl'?action=restoretopic;msgs='$message['id'], ';'$context['session_var'], '='$context['session_id'], '">'$txt['restore_message'], '</a></li>';

if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])
echo '
</ul>
</div>'
;

echo'
<ul class="reset floatright" style="margin: 5px 15px 0 7px;">'
;

// Show a checkbox for quick moderation?
if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == && $message['can_remove'])
echo '
<li class="inline_mod_check" style="display: none;" id="in_topic_mod_check_'
$message['id'], '"></li>';

echo'
</ul>
<div class="keyinfo">
<div class="messageicon">
<img src="'
$message['icon_url'] . '" alt=""'$message['can_modify'] ? ' id="msg_icon_' $message['id'] . '"' ''' />
</div>
<h5 id="subject_'
$message['id'], '">
<a href="'
$message['href'], '" rel="nofollow">'$message['subject'], '</a>
</h5>
<div class="smalltext">&#38;#171; <strong>'
, !empty($message['counter']) ? $txt['reply_noun'] . ' #' $message['counter'] : ''' '$txt['on'], ':</strong> '$message['time'], ' &#38;#187;</div>
<div id="msg_'
$message['id'], '_quick_mod"></div>
</div>'
;

// Ignoring this user? Hide the post.
if ($ignoring)
echo '
<div id="msg_'
$message['id'], '_ignored_prompt">
'
$txt['ignoring_user'], '
<a href="#" id="msg_'
$message['id'], '_ignored_link" style="display: none;">'$txt['show_ignore_user_post'], '</a>
</div>'
;

// Show the post itself, finally!
echo '
<div class="post">'
;

if (!$message['approved'] && $message['member']['id'] != && $message['member']['id'] == $context['user']['id'])
echo '
<div class="approve_post">
'
$txt['post_awaiting_approval'], '
</div>'
;
echo '
<div class="inner" id="msg_'
$message['id'], '"''>'$message['body'], '</div>
</div>'
;

// Can the user modify the contents of this post?  Show the modify inline image.
if ($message['can_modify'])
echo '
<img src="'
$settings['images_url'], '/icons/modify_inline.gif" alt="'$txt['modify_msg'], '" title="'$txt['modify_msg'], '" class="modifybutton" id="modify_button_'$message['id'], '" style="cursor: ', ($context['browser']['is_ie5'] || $context['browser']['is_ie5.5'] ? 'hand' 'pointer'), '; display: none;" onclick="oQuickModify.modifyMsg(\''$message['id'], '\')" />';

// Assuming there are attachments...
if (!empty($message['attachment']))
{
echo '
<div id="msg_'
$message['id'], '_footer" class="attachments smalltext">
<div style="overflow: '
$context['browser']['is_firefox'] ? 'visible' 'auto'';">';

$last_approved_state 1;
foreach ($message['attachment'] as $attachment)
{
// Show a special box for unapproved attachments...
if ($attachment['is_approved'] != $last_approved_state)
{
$last_approved_state 0;
echo '
<fieldset>
<legend>'
$txt['attach_awaiting_approve'];

if ($context['can_approve'])
echo '&nbsp;[<a href="'$scripturl'?action=attachapprove;sa=all;mid='$message['id'], ';'$context['session_var'], '='$context['session_id'], '">'$txt['approve_all'], '</a>]';

echo '</legend>';
}

if ($attachment['is_image'])
{
if ($attachment['thumbnail']['has_thumb'])
echo '
<a href="'
$attachment['href'], ';image" id="link_'$attachment['id'], '" onclick="'$attachment['thumbnail']['javascript'], '"><img src="'$attachment['thumbnail']['href'], '" alt="" id="thumb_'$attachment['id'], '" /></a><br />';
else
echo '
<img src="' 
$attachment['href'] . ';image" alt="" width="' $attachment['width'] . '" height="' $attachment['height'] . '"/><br />';
}
echo '
<a href="' 
$attachment['href'] . '"><img src="' $settings['images_url'] . '/icons/clip.gif" align="middle" alt="*" />&nbsp;' $attachment['name'] . '</a> ';

if (!$attachment['is_approved'] && $context['can_approve'])
echo '
[<a href="'
$scripturl'?action=attachapprove;sa=approve;aid='$attachment['id'], ';'$context['session_var'], '='$context['session_id'], '">'$txt['approve'], '</a>]&nbsp;|&nbsp;[<a href="'$scripturl'?action=attachapprove;sa=reject;aid='$attachment['id'], ';'$context['session_var'], '='$context['session_id'], '">'$txt['delete'], '</a>] ';
echo '
('
$attachment['size'], ($attachment['is_image'] ? ', ' $attachment['real_width'] . 'x' $attachment['real_height'] . ' - ' $txt['attach_viewed'] : ' - ' $txt['attach_downloaded']) . ' ' $attachment['downloads'] . ' ' $txt['attach_times'] . '.)<br />';
}

// If we had unapproved attachments clean up.
if ($last_approved_state == 0)
echo '
</fieldset>'
;

echo '
</div>
</div>'
;
}

echo '
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_'
$message['id'], '">';

// Show "� Last Edit: Time by Person �" if this post was edited.
if ($settings['show_modify'] && !empty($message['modified']['name']))
echo '
&#38;#171; <em>'
$txt['last_edit'], ': '$message['modified']['time'], ' '$txt['by'], ' '$message['modified']['name'], '</em> &#38;#187;';

echo '
</div>
<div class="smalltext reportlinks">'
;

// Maybe they want to report this post to the moderator(s)?
if ($context['can_report_moderator'])
echo '
<a href="'
$scripturl'?action=reporttm;topic='$context['current_topic'], '.'$message['counter'], ';msg='$message['id'], '">'$txt['report_to_mod'], '</a> &nbsp;';

// Can we issue a warning because of this post?  Remember, we can't give guests warnings.
if ($context['can_issue_warning'] && !$message['is_message_author'] && !$message['member']['is_guest'])
echo '
<a href="'
$scripturl'?action=profile;area=issuewarning;u='$message['member']['id'], ';msg='$message['id'], '"><img src="'$settings['images_url'], '/warn.gif" alt="'$txt['issue_warning_post'], '" title="'$txt['issue_warning_post'], '" /></a>';
echo '
<img src="'
$settings['images_url'], '/ip.gif" alt="" />';

// Show the IP to this user for this post - because you can moderate?
if ($context['can_moderate_forum'] && !empty($message['member']['ip']))
echo '
<a href="'
$scripturl'?action=', !empty($message['member']['is_guest']) ? 'trackip' 'profile;area=tracking;sa=ip;u=' $message['member']['id'], ';searchip='$message['member']['ip'], '">'$message['member']['ip'], '</a> <a href="'$scripturl'?action=helpadmin;help=see_admin_ip" onclick="return reqWin(this.href);" class="help">(?)</a>';
// Or, should we show it because this is you?
elseif ($message['can_see_ip'])
echo '
<a href="'
$scripturl'?action=helpadmin;help=see_member_ip" onclick="return reqWin(this.href);" class="help">'$message['member']['ip'], '</a>';
// Okay, are you at least logged in?  Then we can show something about why IPs are logged...
elseif (!$context['user']['is_guest'])
echo '
<a href="'
$scripturl'?action=helpadmin;help=see_member_ip" onclick="return reqWin(this.href);" class="help">'$txt['logged'], '</a>';
// Otherwise, you see NOTHING!
else
echo '
'
$txt['logged'];

echo '
</div>'
;

// Are there any custom profile fields for above the signature?
if (!empty($message['member']['custom_fields']))
{
$shown false;
foreach ($message['member']['custom_fields'] as $custom)
{
if ($custom['placement'] != || empty($custom['value']))
continue;
if (empty($shown))
{
$shown true;
echo '
<div class="custom_fields_above_signature">
<ul class="reset nolist">'
;
}
echo '
<li>'
$custom['value'], '</li>';
}
if ($shown)
echo '
</ul>
</div>'
;
}

// Show the member's signature?
if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled'])
echo '
<div class="signature" id="msg_'
$message['id'], '_signature">'$message['member']['signature'], '</div>';

echo '
</div>
</div>
</div>
</div>
</div>
<hr  />'
;
}
echo '
</form>
</div>
<a id="lastPost"></a>'
;

// Show the page index... "Pages: [1]".
echo '
<div class="pagesection">
'
template_button_strip($normal_buttons'right'), '
<div class="pagelinks floatleft">'
$txt['pages'], ': '$context['page_index'], !empty($modSettings['topbottomEnable']) ? $context['menu_separator'] . ' &nbsp;&nbsp;<a href="#top"><strong>' $txt['go_up'] . '</strong></a>' '''</div>
<div class="nextlinks_bottom">'
$context['previous_next'], '</div>
</div>'
;

$mod_buttons = array(
'move' => array('test' => 'can_move''text' => 'move_topic''image' => 'admin_move.gif''lang' => true'url' => $scripturl '?action=movetopic;topic=' $context['current_topic'] . '.0'),
'delete' => array('test' => 'can_delete''text' => 'remove_topic''image' => 'admin_rem.gif''lang' => true'custom' => 'onclick="return confirm(\'' $txt['are_sure_remove_topic'] . '\');"''url' => $scripturl '?action=removetopic2;topic=' $context['current_topic'] . '.0;' $context['session_var'] . '=' $context['session_id']),
'lock' => array('test' => 'can_lock''text' => empty($context['is_locked']) ? 'set_lock' 'set_unlock''image' => 'admin_lock.gif''lang' => true'url' => $scripturl '?action=lock;topic=' $context['current_topic'] . '.' $context['start'] . ';' $context['session_var'] . '=' $context['session_id']),
'sticky' => array('test' => 'can_sticky''text' => empty($context['is_sticky']) ? 'set_sticky' 'set_nonsticky''image' => 'admin_sticky.gif''lang' => true'url' => $scripturl '?action=sticky;topic=' $context['current_topic'] . '.' $context['start'] . ';' $context['session_var'] . '=' $context['session_id']),
'merge' => array('test' => 'can_merge''text' => 'merge''image' => 'merge.gif''lang' => true'url' => $scripturl '?action=mergetopics;board=' $context['current_board'] . '.0;from=' $context['current_topic']),
'calendar' => array('test' => 'calendar_post''text' => 'calendar_link''image' => 'linktocal.gif''lang' => true'url' => $scripturl '?action=post;calendar;msg=' $context['topic_first_message'] . ';topic=' $context['current_topic'] . '.0'),
);

// Restore topic. eh?  No monkey business.
if ($context['can_restore_topic'])
$mod_buttons[] = array('text' => 'restore_topic''image' => '''lang' => true'url' => $scripturl '?action=restoretopic;topics=' $context['current_topic'] . ';' $context['session_var'] . '=' $context['session_id']);

// Allow adding new mod buttons easily.
call_integration_hook('integrate_mod_buttons', array(&$mod_buttons));

echo '
<div id="moderationbuttons">'
template_button_strip($mod_buttons'bottom', array('id' => 'moderationbuttons_strip')), '</div>';

// Show the jumpto box, or actually...let Javascript do it.
echo '
<div class="plainbox" id="display_jump_to">&nbsp;</div>'
;

if ($context['can_reply'] && !empty($options['display_quick_reply']))
{
echo '
<a id="quickreply"></a>
<div class="tborder" id="quickreplybox">
<div class="cat_bar">
<h3 class="catbg">
<span class="ie6_header floatleft"><a href="javascript:oQuickReply.swap();">
<img src="'
$settings['images_url'], '/'$options['display_quick_reply'] == 'collapse' 'expand''.gif" alt="+" id="quickReplyExpand" class="icon" />
</a>
<a href="javascript:oQuickReply.swap();">'
$txt['quick_reply'], '</a>
</span>
</h3>
</div>
<div id="quickReplyOptions"'
$options['display_quick_reply'] == '' ' style="display: none"''>
<span class="upperframe"><span></span></span>
<div class="roundframe">
<p class="smalltext lefttext">'
$txt['quick_reply_desc'], '</p>
'
$context['is_locked'] ? '<p class="alert smalltext">' $txt['quick_reply_warning'] . '</p>' '',
$context['oldTopicError'] ? '<p class="alert smalltext">' sprintf($txt['error_old_topic'], $modSettings['oldTopicDays']) . '</p>' '''
'
$context['can_reply_approved'] ? '' '<em>' $txt['wait_for_approval'] . '</em>''
'
, !$context['can_reply_approved'] && $context['require_verification'] ? '<br />' '''
<form action="'
$scripturl'?board='$context['current_board'], ';action=post2" method="post" accept-charset="'$context['character_set'], '" name="postmodify" id="postmodify" onsubmit="submitonce(this);" style="margin: 0;">
<input type="hidden" name="topic" value="'
$context['current_topic'], '" />
<input type="hidden" name="subject" value="'
$context['response_prefix'], $context['subject'], '" />
<input type="hidden" name="icon" value="xx" />
<input type="hidden" name="from_qr" value="1" />
<input type="hidden" name="notify" value="'
$context['is_marked_notify'] || !empty($options['auto_notify']) ? '1' '0''" />
<input type="hidden" name="not_approved" value="'
, !$context['can_reply_approved'], '" />
<input type="hidden" name="goback" value="'
, empty($options['return_to_post']) ? '0' '1''" />
<input type="hidden" name="last_msg" value="'
$context['topic_last_message'], '" />
<input type="hidden" name="'
$context['session_var'], '" value="'$context['session_id'], '" />
<input type="hidden" name="seqnum" value="'
$context['form_sequence_number'], '" />';

// Guests just need more.
if ($context['user']['is_guest'])
echo '
<strong>'
$txt['name'], ':</strong> <input type="text" name="guestname" value="'$context['name'], '" size="25" class="input_text" tabindex="'$context['tabindex']++, '" 
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 17, 2017, 11:04:01 PM
Busca en el archivo la siguiente línea:
<img src="', $message['member']['avatar']['href'], '" class="img-thumbnail img-circle" alt="*" />

Reemplaza por lo siguiente:
<img src="', $message['member']['avatar']['href'], '" class="img-thumbnail" alt="*" />


Ahora busca:
<img src="',$settings['images_url'] ,'/noavatar.png" class="img-thumbnail img-circle" alt="*" />

Reemplaza por:
<img src="',$settings['images_url'] ,'/noavatar.png" class="img-thumbnail" alt="*" />
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 02:37:13 AM
Ok perfecto funciono, pero para ponerlo un poco mas grande? mas o menos tamaño como el que teneis aquí en wintxcoders estaría bien, no se aprecia bien la imagen de perfil por eso lo digo. Gracias por esta ayuda.  ;)
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 18, 2017, 10:58:31 AM
You are not allowed to view links. Register or Login
Ok perfecto funciono, pero para ponerlo un poco mas grande? mas o menos tamaño como el que teneis aquí en wintxcoders estaría bien, no se aprecia bien la imagen de perfil por eso lo digo. Gracias por esta ayuda.  ;)

Creo que desde la administración

> Temas & Diseño > Archivos adjuntos y avatares > Configuración de los avatares

Allí podrás modificar el tamaño
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 03:10:07 PM
Lo modifico desde ahí y sigue igual, la imagen no se agranda.
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 18, 2017, 03:14:31 PM
Busca:
<img src="', $message['member']['avatar']['href'], '" class="img-thumbnail" alt="*" />

Reemplaza:
<img src="', $message['member']['avatar']['href'], '" class="imagen_avatar" alt="*" />


Busca:
<img src="',$settings['images_url'] ,'/noavatar.png" class="img-thumbnail" alt="*" />

Reemplaza:
<img src="',$settings['images_url'] ,'/noavatar.png" class="imagen_avatar" alt="*" />

Al final de el index.css añade lo siguiente:

imagen_avatar {
with: 100%;
}


Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 03:42:28 PM
Sigue igual, puse lo del index.css asi al final como tu dices y sigue igual. Puse los códigos que me pasaste ahí tambien y igual. Te dejo un gyazo para que veas como puse el código en index.css; https://gyazo.com/d9680ca8f015fbc1d6fa47a1ea94216c
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 18, 2017, 03:53:28 PM
You are not allowed to view links. Register or Login
Sigue igual, puse lo del index.css asi al final como tu dices y sigue igual. Puse los códigos que me pasaste ahí tambien y igual. Te dejo un gyazo para que veas como puse el código en index.css; https://gyazo.com/d9680ca8f015fbc1d6fa47a1ea94216c

Perdona fallo mio delante de imagen_avatar pon un . se esta manera

.imagen_avatar
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 03:59:55 PM
https://gyazo.com/79b286648a4e0831cb6485d3742ef057 Como tu dices e igual mira. https://gyazo.com/1ad8525f899d41c1d2a690107ca538c6
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 18, 2017, 04:38:37 PM
You are not allowed to view links. Register or Login
https://gyazo.com/79b286648a4e0831cb6485d3742ef057 Como tu dices e igual mira. https://gyazo.com/1ad8525f899d41c1d2a690107ca538c6

Perdon se escribe width: 100%; me falto la D
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 04:49:00 PM
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 18, 2017, 04:51:49 PM
You are not allowed to view links. Register or Login
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.

Borra cache o entra en modo incognito
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 04:52:55 PM
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.

Borra cache o entra en modo incognito

Siempre entro desde incógnito.
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 18, 2017, 04:53:19 PM
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.

Borra cache o entra en modo incognito

Siempre entro desde incógnito.

Borra entonces o prueba con otro navegador
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 04:55:45 PM
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.

Borra cache o entra en modo incognito

Siempre entro desde incógnito.

Borra entonces o prueba con otro navegador

Problema de navegador si, ahora se ve en grande ya, pero se ve bastante borrosa la imagen un poco
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 18, 2017, 04:56:20 PM
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.

Borra cache o entra en modo incognito

Siempre entro desde incógnito.

Borra entonces o prueba con otro navegador

Problema de navegador si, ahora se ve en grande ya, pero se ve borrosa la imagen un poco

Coge una imagen de mayor tamaño
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 04:56:47 PM
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.

Borra cache o entra en modo incognito

Siempre entro desde incógnito.

Borra entonces o prueba con otro navegador

Problema de navegador si, ahora se ve en grande ya, pero se ve borrosa la imagen un poco

Coge una imagen de mayor tamaño
A que te refieres?
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: WIитX en Julio 18, 2017, 05:14:45 PM
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.

Borra cache o entra en modo incognito

Siempre entro desde incógnito.

Borra entonces o prueba con otro navegador

Problema de navegador si, ahora se ve en grande ya, pero se ve borrosa la imagen un poco

Coge una imagen de mayor tamaño
A que te refieres?

Una imagen mas grande
Título: Re:SMF poner avatar cuadrado en post.
Publicado por: AkaMoab en Julio 18, 2017, 10:30:10 PM
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login
https://gyazo.com/0dce8e0d56113a42622fd40434d81cc2 igual mira, https://gyazo.com/0ec6deb31ed9d9edb93688e6bf64ad77 ya corregi eso e igual.

Borra cache o entra en modo incognito

Siempre entro desde incógnito.

Borra entonces o prueba con otro navegador

Problema de navegador si, ahora se ve en grande ya, pero se ve borrosa la imagen un poco

Coge una imagen de mayor tamaño
A que te refieres?

Una imagen mas grande
Ya probe e igual sigue, probé con una imagen grande, pero de tamaño no se a que tipo de tamaño te refieres.