Widget remove from posts view and signature width problem Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
3 posters

    Widget remove from posts view and signature width problem

    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Widget remove from posts view and signature width problem

    Post by TheCrow September 13th 2014, 2:44 pm

    Hello,

    1. I remember that by adding a specific theme to my forum once (i don't remember the exact theme) by viewing the posts the widgets disappear. I want to know if i can do that. I want when someone views the post not to be albe to see any widget and have the post to full forum width. Is it possible?

    2. Also the signatures in the posts are not below the post but they go below the post profile as well i want it to be below the post and have a column for the profile and nothing below it.
    Take a look below and check it out:
    Widget remove from posts view and signature width problem WTEQzMz
    I want the siganture width to be below the post width but not go over it!

    Thanks for your time!
    MrMind


    Last edited by MrMind on September 14th 2014, 7:12 pm; edited 1 time in total
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 13th 2014, 6:51 pm

    Hello MrMind,

    1. ) Go to Administration Panel > Display > Colors > CSS stylesheet

    Add this to your sheet :
    Code:
    #right { display:none }
    #content { margin-right:0 }
    #container { width:100% }

    Then go to Display > Generalities > Homepage and paste this in your homepage message :
    Code:
    <style type="text/css">
    #right { display:block !important }
    #content { margin-right:125px !important }
    #container { width:87.9% !important }
    </style>

    2. ) Would most likely be done by the templates. I'll take a look and see what I can do.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 13th 2014, 7:08 pm

    The first one works but as soon as i display a post it shows the column of the widgets empty. I want the post to be displayed 100% to the post view page:
    Widget remove from posts view and signature width problem BTgl0dZ



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 13th 2014, 7:09 pm

    Add important to the rules in the stylesheet :
    Code:
    #right { display:none }
    #content { margin-right:0 !important }
    #container { width:100% !important }
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 13th 2014, 7:12 pm

    Ok that is fixed!
    I 'll be waiting for the 2 problem. Smile

    Edit: The information for the Test Account are the same.. Wink
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 13th 2014, 7:22 pm

    Go to Administration Panel > Display > Templates > General > viewtopic_body

    Find and remove :
    Code:
    <!-- BEGIN switch_signature -->
     <div class="sig-content">
     {postrow.displayed.SIGNATURE_NEW}
     </div>
     <!-- END switch_signature -->

    Find :
    Code:
    <div class="postfoot">
     <div class="user-contact profile_{postrow.displayed.PROFILE_POSITION}">
     {postrow.displayed.PROFILE_IMG} {postrow.displayed.PM_IMG} {postrow.displayed.EMAIL_IMG}<!-- BEGIN contact_field --> {postrow.displayed.contact_field.CONTENT}<!-- END contact_field -->
     </div>
     <div class="post-options profile_{postrow.displayed.PROFILE_POSITION}">
     {postrow.displayed.THANK_IMG} {postrow.displayed.MULTIQUOTE_IMG} {postrow.displayed.QUOTE_IMG} {postrow.displayed.EDIT_IMG} {postrow.displayed.DELETE_IMG} {postrow.displayed.IP_IMG} {postrow.displayed.REPORT_IMG}
     </div>
     <div style="clear:both;"></div>
     </div>
     </div>

    Replace by :
    Code:
    <div class="postfoot">
     <div class="user-contact profile_{postrow.displayed.PROFILE_POSITION}">
     {postrow.displayed.PROFILE_IMG} {postrow.displayed.PM_IMG} {postrow.displayed.EMAIL_IMG}<!-- BEGIN contact_field --> {postrow.displayed.contact_field.CONTENT}<!-- END contact_field -->
     </div>
     <div class="post-options profile_{postrow.displayed.PROFILE_POSITION}">
     {postrow.displayed.THANK_IMG} {postrow.displayed.MULTIQUOTE_IMG} {postrow.displayed.QUOTE_IMG} {postrow.displayed.EDIT_IMG} {postrow.displayed.DELETE_IMG} {postrow.displayed.IP_IMG} {postrow.displayed.REPORT_IMG}
     </div>
     <div style="clear:both;"></div>
     </div>
     </div>
                                       <!-- BEGIN switch_signature -->
     <div class="sig-content">
     {postrow.displayed.SIGNATURE_NEW}
     </div>
     <!-- END switch_signature -->

    Save and publish.


    Then use some CSS to style it :
    Code:
    .sig-content {
      background:#FBFBFB;
      border-top:1px solid #DDD;
    }
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 13th 2014, 8:19 pm

    Now it made the post view a lot uglier. I wanted the signature in the post but with the dimension of the post. Not to make it just below it.

    Edit: I want the signature displayed to be like here
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 13th 2014, 8:31 pm

    Like this ?
    Widget remove from posts view and signature width problem Captu151

    I think it is the same, the profile takes up space to the left.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 13th 2014, 8:49 pm

    Exactly. But now if you check i don't know what happened but it made the post view horrible! Sad



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 13th 2014, 9:04 pm

    You may have ended a <div> tag too early when you replaced the specified part. You can post your template for me to look over if you want.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 12:09 am

    Yes of course. Here you go:

    viewtopic_body template:
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 1:18 am

    Try this :
    Code:
    <script type="text/javascript">//<![CDATA[
    var multiquote_img_off = '{JS_MULTIQUOTE_IMG_OFF}', multiquote_img_on = '{JS_MULTIQUOTE_IMG_ON}', _atr = '{JS_DIR}addthis/', _ati = '{PATH_IMG_FA}addthis/'{ADDTHIS_LANG}, addthis_localize = { share_caption: "{L_SHARE_CAPTION}", email: "{L_EMAIL}", email_caption: "{L_EMAIL_CAPTION}", favorites: "{L_SHARE_BOOKMARKS}", print: "{L_PRINT}", more: "{L_MORE}" };
    $(function(){
      _atc.cwait = 0;
      $('.addthis_button').mouseup(function(){
          if ($('#at15s').css('display') == 'block') {
            addthis_close();
          }
      });
    });

    var hiddenMsgLabel = { visible:'{JS_HIDE_HIDDEN_MESSAGE}', hidden:'{JS_SHOW_HIDDEN_MESSAGE}' };
    showHiddenMessage = function(id)
    {
        try
        {
            var regId = parseInt(id, 10);
            if( isNaN(regId) ) { regId = 0; }
           
            if( regId > 0)
            {
                $('.post--' + id).toggle(0, function()
            {
                if( $(this).is(":visible") )
                {
                  $('#hidden-title--' + id).html(hiddenMsgLabel.visible);
                }
                else
                {
                  $('#hidden-title--' + id).html(hiddenMsgLabel.hidden);
                }
            });
            }
        }
        catch(e) { }
       
      return false;
    };

    //]]>
    </script>

    <!-- BEGIN switch_user_logged_in -->
    <div id="pun-visit" class="clearfix">
      <ul>
          <!-- BEGIN switch_plus_menu -->
          <li>
            <script type="text/javascript">//<![CDATA[
                var url_favourite = '{switch_user_logged_in.U_FAVOURITE_JS_PLUS_MENU}';
                var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
                var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
                var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
                var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
                var url_tellfriend = '{U_TELLFRIEND_JS_PLUS_MENU}';
                insert_plus_menu_new('f{FORUM_ID}&amp;t={TOPIC_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
            //]]>
            </script>
          </li>
          <!-- END switch_plus_menu -->
          <li><a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=forumotion">{L_SHARE}</a></li>
          <li><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></li>
          <li><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></li>
          <!-- BEGIN watchtopic -->
          <li>{S_WATCH_TOPIC}</li>
          <!-- END watchtopic -->
      </ul>
      <p>{LOGGED_AS}. {LAST_VISIT_DATE}</p>
    </div>
    <!-- END switch_user_logged_in -->
    <!-- BEGIN switch_user_logged_out -->
    <div id="pun-visit">
      <p>{L_NOT_CONNECTED} {L_LOGIN_REGISTER}</p>
    </div>
    <!-- END switch_user_logged_out -->

    <div class="pun-crumbs noprint">
      <p class="crumbs">
          <a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}
          <!-- BEGIN switch_twitter_btn -->
          <span id="twitter_btn" style="margin-left: 6px; ">
            <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a>
            <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
          </span>
          <!-- END switch_twitter_btn -->
          <!-- BEGIN switch_fb_likebtn -->
          <span id="fb_likebtn" style="margin-left: 6px; ">
            <iframe src="http://www.facebook.com/plugins/like.php?href={FORUM_URL}{TOPIC_URL}&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:auto; height:21px;" allowTransparency="true"></iframe>
          </span>
          <!-- END switch_fb_likebtn -->
      </p>
    </div>

    <div class="paged-head clearfix">
          <!-- BEGIN topicpagination -->
          <p class="paging">{PAGINATION}</p>
          <!-- END topicpagination -->
          <p class="posting" style="float: right;">
            <!-- BEGIN switch_user_authpost -->
            <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
            <!-- END switch_user_authpost -->

            <!-- BEGIN switch_user_authreply -->
            <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
            <!-- END switch_user_authreply -->
          </p>
      </div>
    <div style="line-height: 80%;">&nbsp;</div>
    <div class="titlebox">
      <dd> <dava><div class="avatarredet"><a class="teste2" href="#">
        <img class="teste" alt="" src="http://r26.imgfast.net/users/2617/31/90/74/avatars/1-40.png" /></a></div></dava>
        <div itemscope="" itemtype="http://schema.org/Article" class="ipsBox_withphoto">
          <div style="line-height: 80%;">&nbsp;</div>
          <h2 itemprop="name" class="ipsType_pagetitle">{TOPIC_TITLE}</h2>
          <div class="desc lighter blend_links">
            <dts>Συγγραφέας: </dts><span itemprop="creator"></span> - <span itemprop="data_post"></span></div></div>
      </dd></div>



    <div class="main paged">

      {POLL_DISPLAY}
      <div class="main-head clearfix">
          <p class="h2">
            <span class="filterb">{L_MESSAGE} ({PAGE_NUMBER})</span>
          </p>
      </div>

      <div class="main-content topic">
          <!-- BEGIN postrow -->
            <!-- BEGIN hidden -->
                <p class="p-hidden">{postrow.hidden.MESSAGE}</p>
            <!-- END hidden -->
           
            <!-- BEGIN displayed -->
                            <div id="p{postrow.displayed.U_POST_ID}" class="posthead"{postrow.displayed.THANK_BGCOLOR}>
                                                      <span style="float:right; font-size: 12px;"><a href="{postrow.displayed.POST_URL}">#{postrow.displayed.COUNT_POSTS}</a></span>
                                                      <h4 class="username"><span class="creator">{postrow.displayed.POSTER_NAME}</span> <span style="margin-left: 5px; margin-top: -3px;">{postrow.displayed.ONLINE_IMG}</span>
                                                        </h4>
                  </div>
           
            <div class="post post--{postrow.displayed.U_POST_ID}"{postrow.displayed.THANK_BGCOLOR} style="{postrow.displayed.DISPLAYABLE_STATE}">
                <a name="{postrow.displayed.U_POST_ID}"></a>
                <div class="postmain"{postrow.displayed.THANK_BGCOLOR}>

                  <div class="postbody"{postrow.displayed.THANK_BGCOLOR}>
                      <div class="user">
                        <div class="user-ident">
                            <div class="user-basic-info">
                                                                      {postrow.displayed.POSTER_AVATAR}<br/><div style="line-height: 50%;">&nbsp;</div>
                              {postrow.displayed.POSTER_RANK_NEW}
                            </div>
                        </div>
                                                      <div class="ctoggle">Πληροφορίες Μέλους</div>
    <div style="display: none;">
                                                      <div class="user-info">
                            <!-- BEGIN profile_field -->
                            {postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
                            <!-- END profile_field -->
                            {postrow.displayed.POSTER_RPG}
      </div></div>
                                                      <a rel="nofollow" href="#top" id="goup">Eπιστροφή στην κορυφή</a></div>
                                             
                      <div class="post-entry">
                        <div class="entry-content">
                                                              <p style="color: #a4a4a4; font-size: 12px;">Δημοσιεύτηκε <span class="data-post">{postrow.displayed.POST_DATE_NEW}</span></p>
                                                              <div style="line-height: 50%;">&nbsp;</div>
                            <!-- BEGIN switch_vote_active -->
                            <div class="vote gensmall">
                                                                      <!-- BEGIN switch_vote -->
                                                                      <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_PLUS}">Like</a></div>
                                                                      <br/><br/><br/><!-- END switch_vote -->
                              <!-- BEGIN switch_bar -->
                              <div class="vote-bar" title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}">
                                                                              <!-- BEGIN switch_vote_plus -->
                <p class="rep_highlight" style="background: none repeat scroll 0 0 #D5DEE5; border-radius: 5px 5px 5px 5px; color: #1D3652; float: right; font-size: 10px; font-weight: bold; margin: -15px -25px; padding: 5px; text-align: center;"> <img style="margin-bottom: 4px;" alt="*" src="http://i78.servimg.com/u/f78/18/17/62/92/star_b10.png" /> <br/>LIKED</p> 
                                                                              <!-- END switch_vote_plus -->
                              </div>
                              <!-- END switch_bar -->
                                                                     
                            </div>
                            <!-- END switch_vote_active -->
                            <div>
                              <div>{postrow.displayed.MESSAGE}</div>
                              <!-- BEGIN switch_attachments -->
                              <dl class="attachbox">
                                  <dt>{postrow.displayed.switch_attachments.L_ATTACHMENTS}</dt>
                                  <dd>
                                    <!-- BEGIN switch_post_attachments -->
                                    <dl class="file">
                                        <dt>
                                          <img src="{postrow.displayed.switch_attachments.switch_post_attachments.U_IMG}" />

                                          <!-- BEGIN switch_dl_att -->
                                          <a class="postlink" href="{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.U_ATTACHMENT}">{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT}</a> {postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT_DEL}
                                          <!-- END switch_dl_att -->

                                          <!-- BEGIN switch_no_dl_att -->
                                          {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT} {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT_DEL}
                                          <!-- END switch_no_dl_att -->
                                        </dt>

                                        <!-- BEGIN switch_no_comment -->
                                        <dd>
                                          <em>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_comment.ATTACHMENT_COMMENT}</em>
                                        </dd>
                                        <!-- END switch_no_comment -->

                                        <!-- BEGIN switch_no_dl_att -->
                                        <dd>
                                          <em><strong>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.TEXT_NO_DL}</strong></em>
                                        </dd>
                                        <!-- END switch_no_dl_att -->

                                        <dd>({postrow.displayed.switch_attachments.switch_post_attachments.FILE_SIZE}) {postrow.displayed.switch_attachments.switch_post_attachments.NB_DL}</dd>
                                    </dl>
                                    <!-- END switch_post_attachments -->
                                  </dd>
                              </dl>
                              <!-- END switch_attachments -->
                              <div class="clear"></div>
                            </div>
                            <p class="edit">
                        {postrow.displayed.EDITED_MESSAGE}
                            </p>
                        </div>
                      </div>
                  </div>
                 
    <div class="postfoot">
     <div class="user-contact profile_{postrow.displayed.PROFILE_POSITION}">
     {postrow.displayed.PROFILE_IMG} {postrow.displayed.PM_IMG} {postrow.displayed.EMAIL_IMG}<!-- BEGIN contact_field --> {postrow.displayed.contact_field.CONTENT}<!-- END contact_field -->
     </div>
     <div class="post-options profile_{postrow.displayed.PROFILE_POSITION}">
     {postrow.displayed.THANK_IMG} {postrow.displayed.MULTIQUOTE_IMG} {postrow.displayed.QUOTE_IMG} {postrow.displayed.EDIT_IMG} {postrow.displayed.DELETE_IMG} {postrow.displayed.IP_IMG} {postrow.displayed.REPORT_IMG}
     </div>
     <div style="clear:both;"></div>
     </div>
     </div>
                                      <!-- BEGIN switch_signature -->
     <div class="sig-content">
     {postrow.displayed.SIGNATURE_NEW}
     </div>
     <!-- END switch_signature -->
                                     

     <!-- BEGIN first_post_br -->
     </div>
      <div id="first-post-br">Xώρος Διαφημίσεων</div>
     <div class="main-content topic">
     <!-- END first_post_br -->
     <!-- END displayed -->
     <!-- END postrow -->
     </div>
      <div class="main-foot clearfix">
          <p class="h2">
    <span class="filterb">{L_MESSAGE} ({PAGE_NUMBER})</span>
          </p>
          <p class="options">
            <input type="hidden" name="t" value="{TOPIC_ID}" />

            <!-- <input type="hidden" name="sid" value="{S_SID}" /> -->
            <input type="hidden" name="{SECURE_ID_NAME}" value="{SECURE_ID_VALUE}" />

            <!-- BEGIN viewtopic_bottom -->
            {S_TOPIC_ADMIN}
            <!-- END viewtopic_bottom -->
          </p>
      </div><br></br>
    <p class="posting" style="float: right;">
            <!-- BEGIN switch_user_authpost -->
            <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
            <!-- END switch_user_authpost -->

            <!-- BEGIN switch_user_authreply -->
            <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
            <!-- END switch_user_authreply -->
      </p><br></br>
      <a name="bottomtitle"></a>

    </div>

    <!-- BEGIN promot_trafic -->
    <div class="main" id="ptrafic_close" style="display:none">
      <div class="main-head clearfix">
          <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
          <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_MORE_IMG}" alt="+" align="" border="0" /></a></p>
      </div>
    </div>
    <div class="main" id="ptrafic_open" style="display:''">
      <div class="main-head clearfix">
          <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
          <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_LESS_IMG}" alt="-" align="" border="0" /></a></p>
      </div>
      <div class="main-content clearfix">
          <!-- BEGIN link -->
          »&nbsp;<a href="{promot_trafic.link.U_HREF}" target="_blank" title="{promot_trafic.link.TITLE}">{promot_trafic.link.TITLE}</a><br />
          <!-- END link -->
      </div>
    </div>
    <!-- END promot_trafic -->

    <!-- BEGIN switch_forum_rules -->
    <div class="main" id="forum_rules">
      <div class="main-head clearfix">
          <p class="h2">{L_FORUM_RULES}</p>
      </div>
      <table class="main-content frm">
          <tr>
            <!-- BEGIN switch_forum_rule_image -->
            <td class="logo">
                <img src="{RULE_IMG_URL}" />
            </td>
            <!-- END switch_forum_rule_image -->
            <td class="rules entry-content">
                {RULE_MSG}
            </td>
          </tr>
      </table>
    </div>
    <!-- END switch_forum_rules -->

    <!-- BEGIN switch_user_logged_in -->
    <a name="quickreply"></a>
    {QUICK_REPLY_FORM}
    <!-- END switch_user_logged_in -->

    <div id="pun-info" class="main">
      <div class="main-content">
          <div id="stats">
            <p>{L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}</p>
          </div>
      </div>
    </div>

    <!-- BEGIN switch_image_resize -->
    <script type="text/javascript">
    //<![CDATA[
    $(resize_images({ 'selector' : '.post-entry .entry-content', 'max_width' : {switch_image_resize.IMG_RESIZE_WIDTH}, 'max_height' : {switch_image_resize.IMG_RESIZE_HEIGHT} }));
    //]]>
    </script>
    <!-- END switch_image_resize -->

    <script src="{JS_DIR}addthis/addthis_widget.js" type="text/javascript"></script>

    <style>
    #text_editor_controls {
    margin: -10px 0 10px 210px !important;
    float: right;
    width: 80% !important;
    }
    .vote .vote-bar {
    width: none;
    border: none !important;
    }
    </style>
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 10:09 am

    Ok that solved the way the posts look but didn't solve the signature yet. I want it to be as the default way the posts look. One column the poster profile and right next the post and below the post the signature.



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 2:20 pm

    You want it to be the way it normally displays ?
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 2:22 pm

    Yes as the default forum has it.



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 2:25 pm

    Replace your template by :
    Code:
    <script type="text/javascript">//<![CDATA[
    var multiquote_img_off = '{JS_MULTIQUOTE_IMG_OFF}', multiquote_img_on = '{JS_MULTIQUOTE_IMG_ON}', _atr = '{JS_DIR}addthis/', _ati = '{PATH_IMG_FA}addthis/'{ADDTHIS_LANG}, addthis_localize = { share_caption: "{L_SHARE_CAPTION}", email: "{L_EMAIL}", email_caption: "{L_EMAIL_CAPTION}", favorites: "{L_SHARE_BOOKMARKS}", print: "{L_PRINT}", more: "{L_MORE}" };
    $(function(){
      _atc.cwait = 0;
      $('.addthis_button').mouseup(function(){
          if ($('#at15s').css('display') == 'block') {
            addthis_close();
          }
      });
    });

    var hiddenMsgLabel = { visible:'{JS_HIDE_HIDDEN_MESSAGE}', hidden:'{JS_SHOW_HIDDEN_MESSAGE}' };
    showHiddenMessage = function(id)
    {
        try
        {
            var regId = parseInt(id, 10);
            if( isNaN(regId) ) { regId = 0; }
           
            if( regId > 0)
            {
                $('.post--' + id).toggle(0, function()
            {
                if( $(this).is(":visible") )
                {
                  $('#hidden-title--' + id).html(hiddenMsgLabel.visible);
                }
                else
                {
                  $('#hidden-title--' + id).html(hiddenMsgLabel.hidden);
                }
            });
            }
        }
        catch(e) { }
       
      return false;
    };

    //]]>
    </script>

    <!-- BEGIN switch_user_logged_in -->
    <div id="pun-visit" class="clearfix">
      <ul>
          <!-- BEGIN switch_plus_menu -->
          <li>
            <script type="text/javascript">//<![CDATA[
                var url_favourite = '{switch_user_logged_in.U_FAVOURITE_JS_PLUS_MENU}';
                var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
                var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
                var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
                var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
                var url_tellfriend = '{U_TELLFRIEND_JS_PLUS_MENU}';
                insert_plus_menu_new('f{FORUM_ID}&amp;t={TOPIC_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
            //]]>
            </script>
          </li>
          <!-- END switch_plus_menu -->
          <li><a class="addthis_button" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=forumotion">{L_SHARE}</a></li>
          <li><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></li>
          <li><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></li>
          <!-- BEGIN watchtopic -->
          <li>{S_WATCH_TOPIC}</li>
          <!-- END watchtopic -->
      </ul>
      <p>{LOGGED_AS}. {LAST_VISIT_DATE}</p>
    </div>
    <!-- END switch_user_logged_in -->
    <!-- BEGIN switch_user_logged_out -->
    <div id="pun-visit">
      <p>{L_NOT_CONNECTED} {L_LOGIN_REGISTER}</p>
    </div>
    <!-- END switch_user_logged_out -->

    <div class="pun-crumbs noprint">
      <p class="crumbs">
          <a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC}
          <!-- BEGIN switch_twitter_btn -->
          <span id="twitter_btn" style="margin-left: 6px; ">
            <a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a>
            <script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
          </span>
          <!-- END switch_twitter_btn -->
          <!-- BEGIN switch_fb_likebtn -->
          <span id="fb_likebtn" style="margin-left: 6px; ">
            <iframe src="http://www.facebook.com/plugins/like.php?href={FORUM_URL}{TOPIC_URL}&amp;layout=button_count&amp;show_faces=false&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:auto; height:21px;" allowTransparency="true"></iframe>
          </span>
          <!-- END switch_fb_likebtn -->
      </p>
    </div>

    <div class="paged-head clearfix">
          <!-- BEGIN topicpagination -->
          <p class="paging">{PAGINATION}</p>
          <!-- END topicpagination -->
          <p class="posting" style="float: right;">
            <!-- BEGIN switch_user_authpost -->
            <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
            <!-- END switch_user_authpost -->

            <!-- BEGIN switch_user_authreply -->
            <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
            <!-- END switch_user_authreply -->
          </p>
      </div>
    <div style="line-height: 80%;">&nbsp;</div>
    <div class="titlebox">
      <dd> <dava><div class="avatarredet"><a class="teste2" href="#">
        <img class="teste" alt="" src="http://r26.imgfast.net/users/2617/31/90/74/avatars/1-40.png" /></a></div></dava>
        <div itemscope="" itemtype="http://schema.org/Article" class="ipsBox_withphoto">
          <div style="line-height: 80%;">&nbsp;</div>
          <h2 itemprop="name" class="ipsType_pagetitle">{TOPIC_TITLE}</h2>
          <div class="desc lighter blend_links">
            <dts>Συγγραφέας: </dts><span itemprop="creator"></span> - <span itemprop="data_post"></span></div></div>
      </dd></div>



    <div class="main paged">

      {POLL_DISPLAY}
      <div class="main-head clearfix">
          <p class="h2">
            <span class="filterb">{L_MESSAGE} ({PAGE_NUMBER})</span>
          </p>
      </div>

      <div class="main-content topic">
          <!-- BEGIN postrow -->
            <!-- BEGIN hidden -->
                <p class="p-hidden">{postrow.hidden.MESSAGE}</p>
            <!-- END hidden -->
           
            <!-- BEGIN displayed -->
                            <div id="p{postrow.displayed.U_POST_ID}" class="posthead"{postrow.displayed.THANK_BGCOLOR}>
                                                      <span style="float:right; font-size: 12px;"><a href="{postrow.displayed.POST_URL}">#{postrow.displayed.COUNT_POSTS}</a></span>
                                                      <h4 class="username"><span class="creator">{postrow.displayed.POSTER_NAME}</span> <span style="margin-left: 5px; margin-top: -3px;">{postrow.displayed.ONLINE_IMG}</span>
                                                        </h4>
                  </div>
           
            <div class="post post--{postrow.displayed.U_POST_ID}"{postrow.displayed.THANK_BGCOLOR} style="{postrow.displayed.DISPLAYABLE_STATE}">
                <a name="{postrow.displayed.U_POST_ID}"></a>
                <div class="postmain"{postrow.displayed.THANK_BGCOLOR}>

                  <div class="postbody"{postrow.displayed.THANK_BGCOLOR}>
                      <div class="user">
                        <div class="user-ident">
                            <div class="user-basic-info">
                                                                      {postrow.displayed.POSTER_AVATAR}<br/><div style="line-height: 50%;">&nbsp;</div>
                              {postrow.displayed.POSTER_RANK_NEW}
                            </div>
                        </div>
                                                      <div class="ctoggle">Πληροφορίες Μέλους</div>
    <div style="display: none;">
                                                      <div class="user-info">
                            <!-- BEGIN profile_field -->
                            {postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
                            <!-- END profile_field -->
                            {postrow.displayed.POSTER_RPG}
      </div></div>
                                                      <a rel="nofollow" href="#top" id="goup">Eπιστροφή στην κορυφή</a></div>
                                             
                      <div class="post-entry">
                        <div class="entry-content">
                                                              <p style="color: #a4a4a4; font-size: 12px;">Δημοσιεύτηκε <span class="data-post">{postrow.displayed.POST_DATE_NEW}</span></p>
                                                              <div style="line-height: 50%;">&nbsp;</div>
                            <!-- BEGIN switch_vote_active -->
                            <div class="vote gensmall">
                                                                      <!-- BEGIN switch_vote -->
                                                                      <div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_PLUS}">Like</a></div>
                                                                      <br/><br/><br/><!-- END switch_vote -->
                              <!-- BEGIN switch_bar -->
                              <div class="vote-bar" title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}">
                                                                              <!-- BEGIN switch_vote_plus -->
                <p class="rep_highlight" style="background: none repeat scroll 0 0 #D5DEE5; border-radius: 5px 5px 5px 5px; color: #1D3652; float: right; font-size: 10px; font-weight: bold; margin: -15px -25px; padding: 5px; text-align: center;"> <img style="margin-bottom: 4px;" alt="*" src="http://i78.servimg.com/u/f78/18/17/62/92/star_b10.png" /> <br/>LIKED</p> 
                                                                              <!-- END switch_vote_plus -->
                              </div>
                              <!-- END switch_bar -->
                                                                     
                            </div>
                            <!-- END switch_vote_active -->
                            <div>
                              <div>{postrow.displayed.MESSAGE}</div>
                              <!-- BEGIN switch_attachments -->
                              <dl class="attachbox">
                                  <dt>{postrow.displayed.switch_attachments.L_ATTACHMENTS}</dt>
                                  <dd>
                                    <!-- BEGIN switch_post_attachments -->
                                    <dl class="file">
                                        <dt>
                                          <img src="{postrow.displayed.switch_attachments.switch_post_attachments.U_IMG}" />

                                          <!-- BEGIN switch_dl_att -->
                                          <a class="postlink" href="{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.U_ATTACHMENT}">{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT}</a> {postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT_DEL}
                                          <!-- END switch_dl_att -->

                                          <!-- BEGIN switch_no_dl_att -->
                                          {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT} {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT_DEL}
                                          <!-- END switch_no_dl_att -->
                                        </dt>

                                        <!-- BEGIN switch_no_comment -->
                                        <dd>
                                          <em>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_comment.ATTACHMENT_COMMENT}</em>
                                        </dd>
                                        <!-- END switch_no_comment -->

                                        <!-- BEGIN switch_no_dl_att -->
                                        <dd>
                                          <em><strong>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.TEXT_NO_DL}</strong></em>
                                        </dd>
                                        <!-- END switch_no_dl_att -->

                                        <dd>({postrow.displayed.switch_attachments.switch_post_attachments.FILE_SIZE}) {postrow.displayed.switch_attachments.switch_post_attachments.NB_DL}</dd>
                                    </dl>
                                    <!-- END switch_post_attachments -->
                                  </dd>
                              </dl>
                              <!-- END switch_attachments -->
                              <div class="clear"></div>
                            </div>
                            <p class="edit">
                        {postrow.displayed.EDITED_MESSAGE}
                            </p>
                        </div>
                      </div>
                  </div>
                                      <!-- BEGIN switch_signature -->
     <div class="sig-content">
     {postrow.displayed.SIGNATURE_NEW}
     </div>
     <!-- END switch_signature -->
                 
    <div class="postfoot">
     <div class="user-contact profile_{postrow.displayed.PROFILE_POSITION}">
     {postrow.displayed.PROFILE_IMG} {postrow.displayed.PM_IMG} {postrow.displayed.EMAIL_IMG}<!-- BEGIN contact_field --> {postrow.displayed.contact_field.CONTENT}<!-- END contact_field -->
     </div>
     <div class="post-options profile_{postrow.displayed.PROFILE_POSITION}">
     {postrow.displayed.THANK_IMG} {postrow.displayed.MULTIQUOTE_IMG} {postrow.displayed.QUOTE_IMG} {postrow.displayed.EDIT_IMG} {postrow.displayed.DELETE_IMG} {postrow.displayed.IP_IMG} {postrow.displayed.REPORT_IMG}
     </div>
     <div style="clear:both;"></div>
     </div>
     </div>

                                     

     <!-- BEGIN first_post_br -->
     </div>
      <div id="first-post-br">Xώρος Διαφημίσεων</div>
     <div class="main-content topic">
     <!-- END first_post_br -->
     <!-- END displayed -->
     <!-- END postrow -->
     </div>
      <div class="main-foot clearfix">
          <p class="h2">
    <span class="filterb">{L_MESSAGE} ({PAGE_NUMBER})</span>
          </p>
          <p class="options">
            <input type="hidden" name="t" value="{TOPIC_ID}" />

            <!-- <input type="hidden" name="sid" value="{S_SID}" /> -->
            <input type="hidden" name="{SECURE_ID_NAME}" value="{SECURE_ID_VALUE}" />

            <!-- BEGIN viewtopic_bottom -->
            {S_TOPIC_ADMIN}
            <!-- END viewtopic_bottom -->
          </p>
      </div><br></br>
    <p class="posting" style="float: right;">
            <!-- BEGIN switch_user_authpost -->
            <a href="{U_POST_NEW_TOPIC}" rel="nofollow"><img src="{POST_IMG}" class="{POST_IMG_CLASS}" alt="{L_POST_NEW_TOPIC}" /></a>&nbsp;&nbsp;
            <!-- END switch_user_authpost -->

            <!-- BEGIN switch_user_authreply -->
            <a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
            <!-- END switch_user_authreply -->
      </p><br></br>
      <a name="bottomtitle"></a>

    </div>

    <!-- BEGIN promot_trafic -->
    <div class="main" id="ptrafic_close" style="display:none">
      <div class="main-head clearfix">
          <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
          <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_MORE_IMG}" alt="+" align="" border="0" /></a></p>
      </div>
    </div>
    <div class="main" id="ptrafic_open" style="display:''">
      <div class="main-head clearfix">
          <p class="h2">{PROMOT_TRAFIC_TITLE}</p>
          <p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_LESS_IMG}" alt="-" align="" border="0" /></a></p>
      </div>
      <div class="main-content clearfix">
          <!-- BEGIN link -->
          »&nbsp;<a href="{promot_trafic.link.U_HREF}" target="_blank" title="{promot_trafic.link.TITLE}">{promot_trafic.link.TITLE}</a><br />
          <!-- END link -->
      </div>
    </div>
    <!-- END promot_trafic -->

    <!-- BEGIN switch_forum_rules -->
    <div class="main" id="forum_rules">
      <div class="main-head clearfix">
          <p class="h2">{L_FORUM_RULES}</p>
      </div>
      <table class="main-content frm">
          <tr>
            <!-- BEGIN switch_forum_rule_image -->
            <td class="logo">
                <img src="{RULE_IMG_URL}" />
            </td>
            <!-- END switch_forum_rule_image -->
            <td class="rules entry-content">
                {RULE_MSG}
            </td>
          </tr>
      </table>
    </div>
    <!-- END switch_forum_rules -->

    <!-- BEGIN switch_user_logged_in -->
    <a name="quickreply"></a>
    {QUICK_REPLY_FORM}
    <!-- END switch_user_logged_in -->

    <div id="pun-info" class="main">
      <div class="main-content">
          <div id="stats">
            <p>{L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}</p>
          </div>
      </div>
    </div>

    <!-- BEGIN switch_image_resize -->
    <script type="text/javascript">
    //<![CDATA[
    $(resize_images({ 'selector' : '.post-entry .entry-content', 'max_width' : {switch_image_resize.IMG_RESIZE_WIDTH}, 'max_height' : {switch_image_resize.IMG_RESIZE_HEIGHT} }));
    //]]>
    </script>
    <!-- END switch_image_resize -->

    <script src="{JS_DIR}addthis/addthis_widget.js" type="text/javascript"></script>

    <style>
    #text_editor_controls {
    margin: -10px 0 10px 210px !important;
    float: right;
    width: 80% !important;
    }
    .vote .vote-bar {
    width: none;
    border: none !important;
    }
    </style>
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 2:28 pm

    Nope nothing happened!

    P.s. i noticed that when you change page the post view get a bit messy. Check it here



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 2:31 pm

    Did you publish the template ? The signature should display as it was before you asked to have it modified.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 2:34 pm

    Yes i did. This is how it was before and i didn't want it like that. I want it to be displayed in the post. Now it is displayed below the post and the post profile. Here it is the post profile and next to it the post and below the post the signature.



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 2:40 pm

    I'm having trouble comprehending what you just said..I feel like I'm running in circles. Widget remove from posts view and signature width problem 466793
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 2:43 pm

    Ok because this wont work lets try the other thing!
    Never mind the signature. Can by somehow move the post profile form there and place it on the right hand side empty column? Check the image below:
    Widget remove from posts view and signature width problem 3LouTEg



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 2:55 pm

    If you remove it from the post itself it will no doubt look a bit out of line. If you want the profile to stay with the post, it must be inside taking up a column, or a row. Let me elaborate, this is your profile :

    Think of the layout as a table. Message and signature are pretty much in the same Cell.
    ProfileMessage
    ProfileSignature

    If we want the signature to take up the whole of the table we must place it below in its own row.
    ProfileMessage
    Signature

    Another alternative could be placing all elements in their own row.
    Profile
    Message
    Signature
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 3:01 pm

    Ok i want to have the first profile style but the profile to be at the right.
    Not detach it from the post. Make it in the post but make the post like lets say 80% and the post profile the rest 20% but have like a border or something to separate them.



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 3:17 pm

    Add this to your CSS :
    Code:
    .pun .post .user {
      float:right;
      width:16em;
      margin-top:0;
      margin-left:0;
      margin-right:-17em;
    }

    .pun .post .postmain {
      margin-left:0;
      margin-right:18em
    }

    Adjust the values as needed.
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 3:20 pm

    It is ok as it is now! But check this page here. It makes the page a bit messy. Sad



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 3:25 pm

    What is messy ? I didn't notice anything, maybe I need to clean my glasses.. loul
    Widget remove from posts view and signature width problem Screen28
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 4:08 pm

    Check the top of the page!
    Widget remove from posts view and signature width problem S9Lr4vq



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 4:22 pm

    It looks to be a problem with floats. Add this to your CSS :
    Code:
    #content-container div#container { float:none !important }

    and this to your homepage message :
    Code:
    <style type="text/css">#content-container div#container { float:left !important }</style>
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Solved Re: Widget remove from posts view and signature width problem

    Post by TheCrow September 14th 2014, 4:39 pm

    Now its ok. May i ask you something last?
    Please login and check the post here and tell me if i can modify something somehow and make the post profile or the signature somehow so the post profile when i click to see the info of the user, not to make the post bigger and open with the signature steady. Try it out pressing the
    Widget remove from posts view and signature width problem 3qnjjtN
    and see what i mean.



    Widget remove from posts view and signature width problem Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Widget remove from posts view and signature width problem

    Post by Ange Tuteur September 14th 2014, 4:49 pm

    You'll only see this if the post is short enough. If the post has adequate height it shouldn't move it.

    If you want you can add a minimum height to the post :
    Code:
    .pun .postmain { min-height:450px }