Hi Anthony,
Sorry to put a dampner on your Monday morning but I've now completely uninstalled and reinstalled the
template and still have problems.
Firstly I've spotted that the fixed/scrolling stylesheets still aren't being called.
I know nothing about PHP but it seems that:
| Code: |
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/<?php echo $background ?>.css" type="text/css" />
|
is calling Fixed.css / Scrolling.css rather than fixed.css / scrolling.css (all lower case). I'm not sure about other browsers as I haven't checked but certainly this means that Firefox 2/ Mac can't find the stylesheet.
Anyway, I can work around that by changing the code to:
| Code: |
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/fixed.css" type="text/css" />
|
or of course changing the names of the .css files.
The main issue is still this scrolling thing.
Maybe I have the wrong idea about what should actually be happening. This is what I expected/hoped would happen:
I have a large photograph to use for the background of div#scroll-wrapper. This photo should fill that div so that the top left corner of the photo is in the same position as the top left corner of div#scroll-wrapper.
However what is happening is that the photo is fixed to the top left corner of div#outer_wrap so that most of it is not visible within #scroll-wrapper.
I guess this effect would actually work well with a repeated pattern background image so I'm now wondering if it's supposed to do that anyway and I ought to be modifying the template to suit my needs?
Cheers,
Ollie