Post by poncho on May 11, 2020 15:32:34 GMT -8
LINK TO FORUM
I'm not experienced in coding, nor too familiar with Proboards. What I'm trying to do is have my Custom Profile Fields be displayed with a member's post down below their avatar and currently a message that reads, "I joined on ___ I've made ___ posts
This is the Layout Template coding for Mini-Profiles, I'm not even 100% sure is where I should be looking.
I'm not experienced in coding, nor too familiar with Proboards. What I'm trying to do is have my Custom Profile Fields be displayed with a member's post down below their avatar and currently a message that reads, "I joined on ___ I've made ___ posts
This is the Layout Template coding for Mini-Profiles, I'm not even 100% sure is where I should be looking.
<style>
.byolink a{
font-family: fjalla one;
font-size: 18px;
text-transform: uppercase;
text-align: right;
border-radius: 10px;
}
.byolink a:hover{
font-family: fjalla one;
color: #dadada;
font-size: 18px;
text-transform: uppercase;
text-align: right;
border-radius: 10px;
}
.byolink {
font-family: ms gothic;
font-size: 14px;
text-transform: uppercase;
text-align: right;
border-radius: 10px;
}
.otherinfo {
font-family: verdana;
font-size: 11px;
text-align: justify;
color: #181818;
}
.info {
font-family: verdana;
font-size: 11px;
text-transform: uppercase;
text-align: right;
color: #181818;
}
</style>
<div class="$[miniprofile_class]" style="width: 150px;font-size: 11px;">
<center>
<div class="ranking" style="font-family: fjalla one; text-transform: uppercase; font-size: 14px; letter-spacing: 1px;">{if $[user.group]}
$[user.group.name]
{elseif $[user.rank]}
$[user.rank.name]
{/if}</div>
{if $[user.avatar]}
<div class="avatar" style="-webkit-box-shadow: 0px 0px 1px #000000;box-shadow: 0px 0px 1px #000000;-moz-box-shadow: 0px 0px 1px #000000;"><div align="center">$[user.avatar]</div></div>
<div class="byolink" style="font-size: 15px; font-family: fjalla one; font-weight: bold;">$[user]
{if $[user.is_guest]}Guest{/if}</div>
{/if}
<div class="otherinfo" style="background-color: #ffffff; -webkit-box-shadow: 0px 0px 01px #000000;box-shadow: 0px 0px 1px #000000;-moz-box-shadow: 0px 0px 01px #000000;font-size: 11px; font-family: font-family: fjalla one;">{if $[user.is_member]}
<div class="info" style="font-family: fjalla one; font-size: 11px;">
{foreach $[user.mini_custom_field]}
<span class="$[user.mini_custom_field.content_class]">
$[user.mini_custom_field.value]</span>
{/foreach}
</div>
<div style="font-size: 11px;">I joined on <span style="color: #8f3131;">$[current_user.registered_on_short]</span> I've made <span style="color: #8f3131;">$[user.posts]</span> posts</div></div>
{/if}
{if $[user.personal_text.message]}
<br><div class="text" style="font-family: ms gothic; font-size: 12px; text-transform: lowercase; text-align: center;">$[user.personal_text]</div>
{/if}
{if $[user.miniprofile_badge]}
<div class="$[user.miniprofile_badge_container_class]">
{foreach $[user.miniprofile_badge]}
$[user.miniprofile_badge.icon]
{/foreach}
</div>
</center>
</div>