Files @ 4b2bb32811ff
Branch filter:

Location: website/www/conservancy/templates/base_about.html

bkuhn
Adjust widths slightly when these are combined.

When we have both dt's and the donate-sidebar floating around, things
get tight. Perhaps there is a better solution than this (e.g., can you
set the @media conditional on there being a donate-sidebar at all?), but
this should be a reasonable hack to fix the problem.
{% extends "base_conservancy.html" %}
{% block outercontent %}
    <div id="container">
         <div id="sidebar" class="{% block submenuselection %}other{% endblock %}">
            <h2>{% block category %}About{% endblock %}</h2>
            <ul>
            <li class="Overview"><a href="/about/index.html">Overview</a></li>
            <li class="Contact"><a href="/about/contact">Contact</a></li>
            <li class="Directors"><a href="/about/board/">Directors</a></li>
            <li class="Officers"><a href="/about/officers/">Officers</a></li>
            <li class="Staff"><a href="/about/staff/">Staff</a></li>
            <li class="Eval"><a href="/about/eval-committee/">Evaluation Committee</a></li>
            <li class="Outside"><a href="/about/outside/">Outside Counsel, et alia</a></li>
            <li class="Filings"><a href="/about/filings/">Filings</a></li>
            <li class="License"><a href="/about/license/">License &amp; Sources</a></li>
            </ul>
         </div>
               <div id="mainContent">{% block content %}{% endblock %}
               </div>
   </div>
{% endblock %}