Postbit Legacy help with IE please

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mobosix
    Senior Member
    • Oct 2003
    • 299
    • 4.2.X

    [vB4] Postbit Legacy help with IE please

    I've rearranged the userinfo section of my postbit legacy template and it is displaying the way I want it to in FF, but IE is giving me some issues (who would have guessed?? lol).

    You can view the issue here. (I'll add some screen shots when I get home)

    For some reason in IE the username is getting all messed up. Here is the section of code I've modified:

    Code:
    <div class="postdetails">
        
            <div class="userinfo" align="center">
                
                <vb:if condition="$show['avatar']">
                <a class="postuseravatar" href="{vb:link member, {vb:raw post}}" title="{vb:rawphrase {vb:raw post['onlinestatusphrase']}, {vb:raw post.username}}">
                    <img src="{vb:raw post.avatarurl}" alt="{vb:rawphrase xs_avatar, {vb:raw post.username}}" title="{vb:rawphrase xs_avatar, {vb:raw post.username}}" />
                </a>
                </vb:if> 
                
                <div class="username_container">
                <vb:if condition="$post['userid']">
                    {vb:raw memberaction_dropdown}
                <vb:else />
                    <span class="username guest">{vb:raw post.musername}</span>
                </vb:if>
                </div>
                
                
                <span class="usertitle">
                    {vb:raw post.usertitle}
                </span>
                <vb:if condition="$post['rank']">
                    <span class="rank">{vb:raw post.rank}</span>
                </vb:if>
                {vb:raw template_hook.postbit_userinfo_left}
                
                
                            
                <vb:if condition="$post['userid']">
                    <hr />
                
                    <dl class="userinfo_extra">
                        
                
                        <vb:if condition="$post['field2']"><dt>{vb:rawphrase location_perm}</dt> <dd>{vb:raw post.field2}</dd></vb:if>
    
                        <dt>{vb:rawphrase 'posts'}</dt> <dd>{vb:raw post.posts}</dd>    
                        {vb:raw template_hook.postbit_userinfo_right_after_posts}
                    </dl>
                        <vb:if condition="$show['reputation']">
                    <span class="postbit_reputation" id="repdisplay_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reputationdisplay}</span>
                </vb:if>
                    <vb:if condition="$show['infraction'] OR $show['reppower']">
                    <dl class="user_rep">
                        <vb:if condition="$show['infraction']">
                        <dt>{vb:rawphrase infractions}</dt> 
                        <dd>{vb:raw post.warnings}/{vb:raw post.infractions} ({vb:raw post.ipoints})</dd>
                        </vb:if>
                        <vb:if condition="$show['reputation']">
                            <vb:if condition="$show['reppower']">
                        <dt>{vb:rawphrase reppower}</dt> 
                        <dd id="reppower_{vb:raw post.postid}_{vb:raw post.userid}">{vb:raw post.reppower}</dd> 
                            </vb:if>
                        </vb:if>
                    </dl>
                    </vb:if>
                    {vb:raw template_hook.postbit_userinfo_right}
                    <div class="imlinks">
                        {vb:raw post.icqicon} {vb:raw post.aimicon} {vb:raw post.msnicon} {vb:raw post.yahooicon} {vb:raw post.skypeicon}
                    </div>
                </vb:if>
                    
            </div>
    Thanks for any help,

    Keith
  • mobosix
    Senior Member
    • Oct 2003
    • 299
    • 4.2.X

    #2
    Here are the screen shots:

    In Fire Fox



    In IE 7



    I have noticed that it is also causing some really strange layout issue in IE for the posts as well. Please have a look at them here as posting screen shots of everyone one would not give you all the info.


    I am pretty sure that it is due to the code editing that I did to get that order of userinfo items. If anyone wants to just show me the correct code to do that (and where to stick it) that might be the vest way instead of trying to debug what I have going on here.

    This is the last part to solve before going live with vB4 on my site.

    Thank you,

    Keith

    Comment

    Related Topics

    Collapse

    Working...