MyBB Community Forums

Full Version: Why there is a blur pic on my profile icon?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Despite of extending the thread please provide a demo account. If you can please ...

Don't trust anyone to login to your ACP unless he is atmost trusted like .m. or any trusted staff from MyBB.
(2018-03-29, 04:34 AM)effone Wrote: [ -> ]Despite of extending the thread please provide a demo account. If you can please ...

Don't trust anyone to login to your ACP unless he is atmost trusted like .m. or any trusted staff from MyBB.

big89

654321



Thanks, sir. 

I will reset this password in 2 days.
Give me the full code of:
<img class="panelavatar" ....

from your 'header_welcomeblock_member' template.

Basically your img tag is carrying a blank src value and thats the reason of the broken image. I wanna know if the value is really blank or a variable failure ...
(2018-03-29, 11:12 AM)effone Wrote: [ -> ]Give me the full code of:
<img class="panelavatar" ....

from your 'header_welcomeblock_member' template.

Basically your img tag is carrying a blank src value and thats the reason of the broken image. I wanna know if the value is really blank or a variable failure ...
YES, THAT IS WHY! 
BUT I didn't see a broken img there. 

----------------------------
header_welcomeblock_member'

<div class="user_menu">
<ul>
<li><span class="pms">{$mybb->user['pms_unread']}</span><a href="{$mybb->settings['bburl']}/private.php"><i class="fa fa-envelope fa-fw icon" title="Inbox"></i></a></li>

<li>
<img class="panelavatar" style="vertical-align: top; margin-top: 5px;" src="{$mybb->user['avatar']}" height="66" width="66">

<div class="enmenuwrap">
<span class="enmenu">{$mybb->user['username']}<i class="fa fa-caret-down fa-fw icon"></i></span>
<div class="ensettings">
<ul>
{$admincplink}
{$modcplink}
<li id="title">Content</li>
<li><a href="{$mybb->settings['bburl']}/member.php?action=profile">View your profile</a></li>
<li id="title">Settings</li>
<li><a href="{$mybb->settings['bburl']}/usercp.php">User control panel</a></li>
<li><a href="{$mybb->settings['bburl']}/usercp.php?action=avatar">Edit your avatar</a></li>
<li><a href="{$mybb->settings['bburl']}/usercp.php?action=editsig">Change your signature</a></li>
<li id="logout"><a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">Sign out</a></li>
</ul>
</div>
</div>
</li>

</ul>
</div>

(2018-03-29, 10:57 AM)xiaolong Wrote: [ -> ]
(2018-03-29, 04:34 AM)effone Wrote: [ -> ]Despite of extending the thread please provide a demo account. If you can please ...

Don't trust anyone to login to your ACP unless he is atmost trusted like .m. or any trusted staff from MyBB.

big89

654321



Thanks, sir. 

I will reset this password in 2 days.
<img class="panelavatar" style="vertical-align: top; margin-top: 5px;" src="{$mybb->user['avatar']}" height="66" width="66">

This part will show unknown when i right click to inspect the code on chrome.
Gist of the linked resource above:
just add this line in your global.css and it should fix the issue:

.panelavatar img[src=""] { display: none; }
(2018-03-29, 02:04 PM)effone Wrote: [ -> ]Gist of the linked resource above:
just add this line in your global.css and it should fix the issue:

.panelavatar img[src=""] { display: none; }

So I download this plugin 1st, then add css codes on my global.css?

Because the link :https://community.mybb.com/thread-166660.html has a lot going on there. 
I would like to try but I don't wanna mess up my code
Just add the CSS and thats all.
(2018-03-29, 05:18 PM)effone Wrote: [ -> ]Just add the CSS and thats all.

Yes I already added (on the top in global.cc ) after you told me. 

I just hard reload again, still showing the broken one there 

CUNYStudentPost.com
Pages: 1 2 3