Fixed variable name issue in display_ind_general().

svn: r13138
This commit is contained in:
Rob G. Healey 2009-08-31 08:08:27 +00:00
parent 4f5c0bcefa
commit bc83fa57a3
2 changed files with 22 additions and 12 deletions

View File

@ -57,10 +57,9 @@ Females Web_Gender_Female.png
----------------------------------------------------- */ ----------------------------------------------------- */
body { body {
color:#000; color: #000;
margin:0; margin: 0 auto;
padding: 88px 0 60px 0; background-color: #FFF;
background-color:#FFF;
} }
div { div {
margin:0; margin:0;
@ -197,6 +196,12 @@ span.preposition {
body#NarrativeWeb { body#NarrativeWeb {
font-family: Arial, sans, sans-serif, Helvetica; font-family: Arial, sans, sans-serif, Helvetica;
} }
#body#NarrativeWeb .nobottom {
padding: 88px 0 0 0;
}
#body#NarrativeWeb .bottom {
padding: 88px 0 60px 0;
}
/* Header /* Header
----------------------------------------------------- */ ----------------------------------------------------- */
@ -229,18 +234,23 @@ p#user_header {
/* Footer /* Footer
----------------------------------------------------- */ ----------------------------------------------------- */
#footer { #footer {
clear:both;
font-size:12px;
color:#FFF;
margin:0 auto;
background-color: #542;
border-top:solid 8px #5D835F;
}
#footer .nobottom {
width: 100%;
height: 60px;
}
#footer .bottom {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
overflow: auto; overflow: auto;
width: 100%; width: 100%;
height: 60px; height: 60px;
clear:both;
font-size:12px;
color:#FFF;
margin:0 auto;
padding:0;
background-color: #542;
border-top:solid 8px #5D835F;
} }
#footer a, #footer a:visited { #footer a, #footer a:visited {
text-decoration:none; text-decoration:none;

View File

@ -3610,7 +3610,7 @@ class IndividualPage(BasePage):
# return all three pieces to its caller # return all three pieces to its caller
# do NOT combine before returning to class IndividualPage # do NOT combine before returning to class IndividualPage
return thumbnail, sect_name, summaryarea return thumbnail, section_title, summaryarea
def attribs_or_not(self, db, evt_ref_list): def attribs_or_not(self, db, evt_ref_list):
""" determine if there are attributes for these events """ """ determine if there are attributes for these events """