Hi there,
I'm trying to build a profile page for a network...similar to Facebook profile page. I need the background the tabs are on to go under the profile photo on the left...so when the user updates their status it grows vertically underneath. I've tried placing the status at the top with left padding on the status text..and position: absolute; top: -51px; on the left column... which works but when more apps are added to the left side it displays past the bottom border..not contained.
This is what I've tried...
At the top I have my status and tabs...
<div style='background: #f7f7f7; border-bottom:1px solid #DDDDDD; width: 100%;'>
<div style='padding: 10px 10px 0px 225px;'>
[I]STATUS AND TABS HERE // EXPANDS VERTICALLY WHEN STATUS IS UPDATED[/I]
</div>
</div>
Left column...
<div class='leftColumn' Xwidth='200' style="position: absolute; top: 51px;" id="profile_leftside" container="root" stripe="0">
[I]LEFT SIDE APPS[/I]
</div>
Right column...
<div id="rightColumn">
[I]TAB CONTENT[/I]
</div>
Any suggestions what to add to the left column to position it to the top and still keep it contained? I've tried adding: position: relative; to the surrounding div...but no luck :|
Thanks!