}
#sone #profile.online .picture {
- float: left;
+ position: absolute;
background-image: url("../images/sone.png");
width: 80px;
height: 80px;
}
#sone #profile.offline .picture {
- float: left;
+ position: absolute;
background-image: url("../images/sone-offline.png");
width: 80px;
height: 80px;
font-size: 85%;
}
+#sone #home-sone {
+ margin-left: 80px;
+ padding-left: 1ex;
+}
+
#sone .nice-name {
font-weight: bold;
}
<div id="main">
<div id="profile" class="<%ifnull currentSone>offline<%else>online<%/if>">
- <a class="picture" href="index.html"></a>
- <div class="nice-name profile-link"><a href="viewSone.html?sone=<% currentSone.id|html>"><% currentSone.niceName|html></a></div>
- <div class="edit-profile-link"><a href="editProfile.html"><%= View.Head.ProfileLink.Text|l10n|html></a></div>
+ <a class="picture" href="index.html"> </a>
<%ifnull ! currentSone>
- <%include include/updateStatus.html>
+ <div id="home-sone">
+ <% currentSone|store key=sone>
+ <%include include/viewSone.html>
+ <%include include/updateStatus.html>
+ </div>
<%/if>
</div>