Exceed: How to manually edit the member box
Since I just got a question about this and figured this might be relevant for more people here’s a short tutorial.
By default, the member box takes your blogroll (which needs to be enabled in your blogs settings “Show Tumblrs I follow”) but it only works for main blogs.
1. Find the member box in the HTML
{block:Following}
<div id="box_7" class="boxes">
<div class="box_header">
<span>{text:Headline Eight}</span>
</div>
<!--Add and remove as you need!-->
<ul id="members">
{block:Followed}
<li>
<a href="{FollowedURL}" title="{FollowedName}">
<img src="{FollowedPortraitURL-64}">
</a>
</li>
{/block:Followed}
</ul>
</div>
{/block:Following}
Then delete all the bold parts.
2. Enter your member info
<li>
<a href="{FollowedURL}" title="{FollowedName}">
<img src="{FollowedPortraitURL-64}">
</a>
</li>
Replace the bold parts with your info.
Copy the above snipped and paste it after the first one:
<div id="box_7" class="boxes">
<div class="box_header">
<span>{text:Headline Eight}</span>
</div>
<!--Add and remove as you need!-->
<ul id="members">
<li>
<a href="{FollowedURL}" title="{FollowedName}">
<img src="{FollowedPortraitURL-64}">
</a>
</li>
<li>
<a href="{FollowedURL}" title="{FollowedName}">
<img src="{FollowedPortraitURL-64}">
</a>
</li>
</ul>
</div>
Enter your info and repeat for as many members as you need!