A sign in the profile indicating that the user has not confirmed his registration
The tablet will appear if the user after registration has not confirmed his Email address
open the list of styles HTML and CSS editing
CSS tab> custom.css
add to the very bottom
/** Warning Email in Profile **/
.warning_Email {
color: #ffffff;
font-size: 26px;
padding-top: 7px;
padding-left: 1px;
width: 40px;
height: 40px;
border-radius: 38px;
position: relative;
display: inline-block;
text-align: center;
background-color: #9e1419;
}
.WEmail_bottom {
padding-top: 5px;
}
.WEmail_Text0 {
padding: 10px;
margin-bottom: 5px;
background-color: rgb(204, 83, 83);
color: #202225;
}
.WEmail_Text {
font-size: 12px;
}
/** Warning Email in Profile the end **/
open templates we find; core> front> profile> profile
find the line; <div class = 'ipsPad'> about 8-8 line
add below;
{{if $member->members_bitoptions['validating']}}
<div class='WEmail_Text0 WEmail_bottom'>
<div class="ipsGrid">
<div class="ipsGrid_span2 ipsType_center">
<span class='warning_Email'>
<i class="fa fa-envelope-o"></i>
</span>
</div>
<div class="ipsGrid_span10">
<p class='ipsType_reset WEmail_Text'>
<strong>
{$member->validatingDescription()}
</strong>
</p>
<p class='ipsType_reset ipsType_small'>Будьте бдительны возможно это спамер!</p>
</div>
</div>
</div>
{{endif}}
That's all, if you want to edit for yourself.