[Trac] left sided vertical menu list...

Brad Anderson brad at dsource.org
Wed Mar 2 23:33:41 EST 2005


Somewhere on your page(s), maybe in site_header.cs, you could put the following...

 <div id="left">
  <div class="block">
   <ul>

    <li><a href="/trac/">Home</a></li>
    <li><a href="/trac/wiki/TracDownload">Download</a></li>
    <li><a href="/trac/wiki/TracGuide">Documentation</a></li>
    <li><a href="/trac/wiki/TracFaq">FAQ</a></li>
    <li><a href="/trac/wiki/TracSupport">Support</a></li>
    <li><a href="/trac/wiki/HowToContribute">Participate</a></li>

    <li><a href="/trac/wiki/MailingList">Mailing Lists</a></li>
    <li><a href="http://www.edgewall.com/contact/">Feedback</a></li>
   </ul>
  </div>
 </div>

site_header.cs kind of acts like your site's header, above (and maybe to the left based on styles) trac.

And then in a css file, include this:

#left {
 position: absolute;
 top: 200px;
 left: 10px;
 z-index: 1;
 width: 120px;
 font-size: x-small; 
}

#left ul {
 list-style-image: url(/gfx/li_arr1.png);
 margin-left: 0;
 padding-left: 30px;
}

#left ul li { margin: 1em 0; padding: 0; }


I looked at the source of the page for the html, and here for the css:
http://projects.edgewall.com/trac_common/css/trac.css

Hope it helps. 

BA




bruce wrote:

>still frustrated...
>
>just how did trac create/implement the vertical menu list on their front
>page!!!!!
>
>thanks
>
>Bruce Douglas
>bedouglas at earthlink.net
>
>
>
>_______________________________________________
>Trac mailing list
>Trac at lists.edgewall.com
>http://lists.edgewall.com/mailman/listinfo/trac
>
>
>  
>


More information about the Trac mailing list