diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2017-06-06 14:16:10 +0100 |
---|---|---|
committer | Zarino Zappia <mail@zarino.co.uk> | 2017-06-08 12:07:53 +0100 |
commit | ffe3a98493360717ef830af252954f738166fa1a (patch) | |
tree | 1e98a898c8d810be1faf8323772097895b0447a2 /templates | |
parent | 19736b968eba2df5c3e8bc074625212ab9f67491 (diff) |
Simplify .container width calculations
Removing the explicit width lets .container scale down nicely to the
"middle" 48-60em screen width range without its contents hitting the
sides of the window (as previously happened).
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/warwickshire/header.html | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/templates/web/warwickshire/header.html b/templates/web/warwickshire/header.html index 52eb4f0e8..81c1d9d23 100644 --- a/templates/web/warwickshire/header.html +++ b/templates/web/warwickshire/header.html @@ -85,7 +85,7 @@ <li><a href="//www.warwickshire.gov.uk/listsanddata">Lists, data and information</a></li> <li><a href="//www.warwickshire.gov.uk/organisation" accesskey="2">Organisation</a></li> <li><a href="//www.warwickshire.gov.uk/performance">Our performance</a></li> - <li><a href="//www.warwickshire.gov.uk/partnerships">Partnerships</a></li> + <li><a href="//www.warwickshire.gov.uk/partnerships">Partnerships</a></li> <li><a href="//www.warwickshire.gov.uk/policies">Policies, standards and legislation</a></li> <li><a href="//www.warwickshire.gov.uk/projects">Projects</a></li> <li><a href="//www.warwickshire.gov.uk/strategies">Strategies and priorities</a></li> @@ -146,24 +146,11 @@ <a href="//www.warwickshire.gov.uk/"><img src="//www.warwickshire.gov.uk/wp-content/themes/gamma/images/wdwhitelogo.png" alt="Warwickshire County Council - home" title="Warwickshire County Council - home" ></a> </div> <div class="span9"> - <div class="row"> - <div class="span9"> - <form action="//search3.openobjects.com/kb5/warwickshire/search/results.page" method="get" name="kbs" class="navbar-form pull-right" id="site-search"> - <label for="qtbottom" class="skip" style="display:none;">Search again</label> - <input class="span3" type="text" maxlength="1000" size="40" name="qt" id="qtbottom" alt="Search" placeholder="eg; libraries, roadworks" accesskey="4"> - <button type="submit" value="Search" id="kbsubmitbottom" class="btn btn-mini searchbutton">Search</button> - </form> - </div> - </div> - <div class="row"> - <div id="site-tabs" class="span9"> - <ul class="nav nav-tabs"> - <li class="tab"><a href="//www.warwickshire.gov.uk/">Residents</a></li> - <li class="tab"><a href="//www.warwickshire.gov.uk/business">Businesses</a></li> - <li class="tab"><a href="//www.warwickshire.gov.uk/corporate">About the council</a></li> - </ul> - </div> - </div> + <form action="//search3.openobjects.com/kb5/warwickshire/search/results.page" method="get" name="kbs" class="navbar-form pull-right" id="site-search"> + <label for="qtbottom" class="skip" style="display:none;">Search again</label> + <input type="text" maxlength="1000" size="40" name="qt" id="qtbottom" alt="Search" placeholder="eg; libraries, roadworks" accesskey="4"> + <button type="submit" value="Search" id="kbsubmitbottom" class="btn btn-mini searchbutton">Search</button> + </form> </div> </div> </div> |