Things that Need Fixing

In the following list of things that need fixing, I have separated each thing with a horizontal rule.


Thing 1: When you have two headers in a row, there should be a line break between them. But right now they are all inline:

Heading 3

Heading 4

Heading 5

 Fixed - Mark


Thing 2: When you edit an ordered list, it should display in the editor as 1. 2. 3., not A. B. C. (Hit the Edit tab to see what I mean.)

Ordered list

  1. I
  2. fixed
  3. this
  4. (hoorah)
  5. I think
  6. --Mike

 


Thing 3: I've got the people/directory boxes narrow enough so that they fit to the left of the subnav, and I set it so that only one of the person's titles is displayed, which helps with the height of the box. What I need help with is getting the columns to line up. See http://coe.martelle.webdev.uits.arizona.edu/dps/faculty_staff for an example. This output is controlled by a teaser template for the Person content type. The div for each box is as follows:

.directory_box {
   border: 1px solid #999999;
   background-color: #eee;
   height: 85px;
   width: 465px;
   float: left;
   margin-top: 10px;
   padding: 0;
}

Within that box is a table--see the teaser template.

Done-  Mike

had to figure widths and target individual td's, hope it doesn't hose up anything else:

.view-people-content .node .content table td { width: 60px; border: none;}
.view-people-content .node .content table td+td { padding-left: 3px; width: 195px; font-size: 12px; border: none;}
.view-people-content .node .content table td+td+td { width: 165px; font-size: 12px; padding: 7px 0 0 5px; vertical-align: text-top; border: none;}
.view-people-content .node .content table td+td+td : a { font-size: 12px;}