Both the code and the look slightly
first of all the code wold be completely rewritten to me modular and self contained like so
Code: Select all
<section class="action-bar">
<div class="action-left">
<a class="button" href="{postrow.U_EDIT}" title="{L_EDIT_POST}"><span>Locked</span> <span class="fa fa-lock"></span></a>
<form action="get" class="form forum-search" action="./search.php">
<fieldset class="input-group">
<input class="input input-search" type="search" name="keywords" id="search_words" placeholder="Search this forum...">
<!-- <input class="input input-search" type="search" name="keywords" id="search_words" placeholder="Search this forum..."> -->
<span class="input-group-button">
<button type="submit" class="button"><span class="fa fa-search"></span></button>
</span>
<input type="hidden" name="fid[1]" value="81">
</fieldset>
</form>
</div>
<div class="action-right">
<!-- 673 topics -->
<a class="button" href=""><span class="text">Mark topics read</span> <span class="fa fa-check-square"></span></a>
<a href="" class="button jump">
<span class="text">Page <strong>1</strong> of <strong>34</strong></span> <span class="fa fa-location-arrow"></span>
</a>
<ul class="pagination list-inline">
<li class="active"><span>1</span></li>
<li><a href="">2</a></li>
<li><a href="">3</a></li>
<li><a href="">4</a></li>
<li class="ellipsis"><span>...</span></li>
<li><a href="">34</a></li>
</ul>
</div>
</section>
to help facilitate a transition to something more modular I feel we should keep the html in its own include file action-bar.html, the css in its own module as well action-bar.css and add it as an import in stylesheets.
Its not 100% finished I would still need to tackle the responsive stuff and the rest of the possible variations for all the pages and locations.