Fixed variable name issue in display_ind_general().
svn: r13138
This commit is contained in:
parent
4f5c0bcefa
commit
bc83fa57a3
@ -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;
|
||||||
|
@ -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 """
|
||||||
|
Loading…
x
Reference in New Issue
Block a user