XpressEngineGoogleCode / xe-board

Automatically exported from code.google.com/p/xe-board
0 stars 0 forks source link

Member signature box around profile image problem #153

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
- Read a document by a member who has profile image.

What is the expected output? What do you see instead?
- Member signature box .memberSignature does not wrap around profile image 
.profile.

What version of the product are you using? On what operating system?
- xe_board 1.4.5

Please provide any additional information below.
- Adding a clearing box <div style="clear:left;"></div> at the end of member 
signature box fixes the issue. Change 
modules/board/skins/xe_board/view_document.html like this:
                <!-- display signature / profile image-->
                <!--@if($module_info->display_sign != 'N' && ($oDocument->getProfileImage() || $oDocument->getSignature()))-->
                    <div class="memberSignature">
                    <!--@if($oDocument->getProfileImage())-->
                        <div class="profile"><img src="{$oDocument->getProfileImage()}" alt="profile" /></div>
                    <!--@end-->
                    <!--@if($oDocument->getSignature())-->
                        <div class="signature">{$oDocument->getSignature()}</div>
                    <!--@end-->
                        <div style="clear:left;"></div>
                    </div>
                <!--@end-->

Original issue reported on code.google.com by bolog....@gmail.com on 31 Dec 2012 at 1:42

GoogleCodeExporter commented 8 years ago

Original comment by sinsy...@gmail.com on 12 Mar 2013 at 6:48