phpbb Forum - Board Index In View Forum Moves Pagination

Discussion in 'HTML & Website Design' started by tunescool, Jan 4, 2015.

  1. #1
    i moved the buttons and pagination in the topic list page and the topic page to opposite sides

    everything is fine but the pagination gets lost in the topic list page and i cant get the pagination in the topic page down more closer to the topic

    and id like to move Mark As Read above the search box in the topic list page

    i had a thread on phpbb support but they either dont help, cant help, are rude, and you can only bump a thread twice

    topic list page and template

    http://forumbytunes.com/viewforum.php?f=5

    <!-- IF S_DISPLAY_POST_INFO or .pagination or TOTAL_POSTS or TOTAL_TOPICS -->
    <div class="action-bar top">
    
    <div style="float: left; padding-left: 30px;">
       <!-- IF .pagination or TOTAL_POSTS -->
              <!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}" class="mark">{L_VIEW_UNREAD_POST}</a><!-- ENDIF -->
             <span style="color: #FFFFFF; font-size: 12px; font-weight: bold;"><!-- IF .pagination -->
                <!-- INCLUDE pagination.html -->
             <!-- ELSE -->{PAGE_NUMBER}
             <!-- ENDIF --></span>
       <!-- ENDIF -->
    </div>
    
    <div style="float: right; padding-right: 20px;">
        <div class="action-bar top" style="float: right; padding-bottom: 3px;">
        <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
        <!-- IF S_USER_LOGGED_IN -->
            <div class="buttons">
             <!-- EVENT viewforum_buttons_top_before -->
             <a href="{U_POST_NEW_TOPIC}" class="button icon-button <!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->">
                <!-- IF S_IS_LOCKED -->{L_BUTTON_FORUM_LOCKED}<!-- ELSE -->{L_BUTTON_NEW_TOPIC}<!-- ENDIF -->
             </a>
             <!-- EVENT viewforum_buttons_top_after -->
          </div>
        <!-- ENDIF -->
       <!-- ENDIF -->
        <!-- IF S_DISPLAY_SEARCHBOX -->
           <div class="search-box" style="padding-right: 30px;">
             <form method="get" id="forum-search" action="{S_SEARCHBOX_ACTION}">
             <fieldset>
                <input class="inputbox search tiny" type="search" name="keywords" id="search_keywords" size="20" placeholder="{L_SEARCH_FORUM}" />
                <button class="button icon-button search-icon" type="submit" title="{L_SEARCH}">{L_SEARCH}</button>
                <a href="{U_SEARCH}" class="button icon-button search-adv-icon" title="{L_SEARCH_ADV}">{L_SEARCH_ADV}</a>
                {S_SEARCH_LOCAL_HIDDEN_FIELDS}
             </fieldset>
             </form>
          </div>
       <!-- ENDIF -->
       </div>
    </div>
    <!-- ENDIF -->
    Code (markup):
    topic page

    http://forumbytunes.com/viewtopic.php?f=5&t=10

    
    
    <div class="action-bar top">
    
    <div style="float: left; padding-left: 30px;">
    
       <!-- IF .pagination or TOTAL_POSTS -->
              <!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}" class="mark">{L_VIEW_UNREAD_POST}</a><!-- ENDIF -->
             <span style="color: #FFFFFF; font-size: 12px; font-weight: bold;"><!-- IF .pagination -->
                <!-- INCLUDE pagination.html -->
             <!-- ELSE -->{PAGE_NUMBER}
             <!-- ENDIF --></span>
       <!-- ENDIF -->
    </div>
    
    <!-- IF S_DISPLAY_POST_INFO or .pagination or TOTAL_POSTS or TOTAL_TOPICS -->
        <div class="action-bar top" style="float: right;">
        <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
        <!-- IF S_USER_LOGGED_IN -->
           <div class="buttons">
             <!-- EVENT viewforum_buttons_top_before -->
           <a href="{U_POST_REPLY_TOPIC}" class="button icon-button <!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->reply-icon<!-- ENDIF -->" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->">
             <!-- IF S_IS_LOCKED -->{L_BUTTON_TOPIC_LOCKED}<!-- ELSE -->{L_BUTTON_POST_REPLY}<!-- ENDIF -->
          </a>    
             <a href="{U_POST_NEW_TOPIC}" class="button icon-button <!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->">
                <!-- IF S_IS_LOCKED -->{L_BUTTON_FORUM_LOCKED}<!-- ELSE -->{L_BUTTON_NEW_TOPIC}<!-- ENDIF -->
             </a>
             <!-- EVENT viewforum_buttons_top_after -->
          </div>
        <!-- ENDIF -->
       <!-- ENDIF -->
            <!-- IF .quickmod -->
           <div class="dropdown-container dropdown-container-{S_CONTENT_FLOW_BEGIN} dropdown-up dropdown-{S_CONTENT_FLOW_END} dropdown-button-control" id="quickmod">
             <span title="{L_QUICK_MOD}" class="dropdown-trigger button icon-button modtools-icon dropdown-select">{L_QUICK_MOD}</span>
             <div class="dropdown hidden">
                <div class="pointer"><div class="pointer-inner"></div></div>
                <ul class="dropdown-contents">
                <!-- BEGIN quickmod -->
                   <!-- DEFINE $QUICKMOD_AJAX = (quickmod.VALUE in ['lock', 'unlock', 'delete_topic', 'restore_topic', 'make_normal', 'make_sticky', 'make_announce', 'make_global']) -->
                   <li><a href="{quickmod.LINK}"<!-- IF $QUICKMOD_AJAX --> data-ajax="true" data-refresh="true"<!-- ENDIF -->>{quickmod.TITLE}</a></li>
                <!-- END quickmod -->
                </ul>
             </div>
          </div>
       <!-- ENDIF -->
        <!-- IF S_DISPLAY_SEARCHBOX -->
          <div class="search-box" style="padding-right: 30px;">
             <form method="get" id="forum-search" action="{S_SEARCHBOX_ACTION}">
             <fieldset>
                <input class="inputbox search tiny" type="search" name="keywords" id="search_keywords" size="20" placeholder="{L_SEARCH_FORUM}" />
                <button class="button icon-button search-icon" type="submit" title="{L_SEARCH}">{L_SEARCH}</button>
                <a href="{U_SEARCH}" class="button icon-button search-adv-icon" title="{L_SEARCH_ADV}">{L_SEARCH_ADV}</a>
                {S_SEARCH_LOCAL_HIDDEN_FIELDS}
             </fieldset>
             </form>
          </div>
       <!-- ENDIF -->
       </div>
    <!-- ENDIF -->
    </div>
    Code (markup):
     
    tunescool, Jan 4, 2015 IP
  2. tunescool

    tunescool Well-Known Member

    Messages:
    430
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    158
    Digital Goods:
    1
    #2
    i really need help with this. the mods there wouldnt help and said id need to learn html. i just want it done
     
    tunescool, Jan 14, 2015 IP