diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-06-19 15:38:32 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-06-19 15:38:32 +0100 |
commit | 06f7bfa97958fb1d17a9c15d27004fd04a0002ca (patch) | |
tree | 3f810e099305821132804eed176fd5cbad66f841 | |
parent | 5fc891195a0006d6fdd54e3284bb783e43aab10e (diff) | |
download | troggle-06f7bfa97958fb1d17a9c15d27004fd04a0002ca.tar.gz troggle-06f7bfa97958fb1d17a9c15d27004fd04a0002ca.tar.bz2 troggle-06f7bfa97958fb1d17a9c15d27004fd04a0002ca.zip |
[svn] Make header scroll with page because Julian said so
-rw-r--r-- | expo/models.py | 3 | ||||
-rw-r--r-- | media/css/main3.css | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/expo/models.py b/expo/models.py index 28712b5..c07b86d 100644 --- a/expo/models.py +++ b/expo/models.py @@ -236,7 +236,8 @@ class PersonExpedition(TroggleModel): class LogbookEntry(TroggleModel):
date = models.DateField()
expedition = models.ForeignKey(Expedition,blank=True,null=True) # yes this is double-
- author = models.ForeignKey(PersonExpedition,blank=True,null=True) # the person who writes it up doesn't have to have been on the trip
+ author = models.ForeignKey(PersonExpedition,blank=True,null=True) # the person who writes it up doesn't have to have been on the trip.
+ # Re: the above- so this field should be "typist" or something, not "author". - AC 15 jun 09
title = models.CharField(max_length=200)
cave = models.ForeignKey('Cave',blank=True,null=True)
place = models.CharField(max_length=100,blank=True,null=True,help_text="Only use this if you haven't chosen a cave")
diff --git a/media/css/main3.css b/media/css/main3.css index 4f0a3e8..17779bd 100644 --- a/media/css/main3.css +++ b/media/css/main3.css @@ -227,7 +227,7 @@ img.thumbnail { }
div#header {
- position:fixed;
+ position:absolute;
left:100px;
right:100px;
top:0;
@@ -426,5 +426,4 @@ a.deletelink:link, a.deletelink:visited { a.deletelink:hover {
color: #993333;
-}
-
+}
\ No newline at end of file |