putting a flash header in gallery2

dod

TPer Emeritus
Messages
16,680
Name
Ebenezer McScrooge III
Edit My Images
Yes
I've got the code for it I think, as I'm using it on my Joomla site. I just want the header for the gallery to look the same.

I know next to nothing about HTML/CSS etc so where do I put the code to make it work?

Thanks in advance :)
 
I've got the code for it I think, as I'm using it on my Joomla site. I just want the header for the gallery to look the same.

I know next to nothing about HTML/CSS etc so where do I put the code to make it work?

Thanks in advance :)

There will be a header file in yout template folder. It will be a .tpl file and may be in a pages or html folder (depends on the template). You may need to look at the index.php files in the template folder to figure out the exact name and location

However. When you do edit the file put the edited file in the LOCAL folder and then in the back end of gallery2 delete the template cache (look at performance / maintanence options)

If you want me to look at it and tell you what file it is you need to edit, drop me a line
 
can't remember to be honest.

I'll have a look at the files/templates and see what the score is, thanks :)
 
Would it not be in 'main.php'?
 
think I've found it in index.php, header.swf seems to be the file?

<!-- BEGIN: flashheader -->
<?php if($show_flashheader == "true") : ?>
<div id="ol-flashheader">
<object type="application/x-shockwave-flash" data="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/images/header.swf" width="700" height="230">
<param name="wmode" value="transparent" />
<param name="movie" value="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template?>/images/header.swf" />
</object>
</div>
<?php endif; ?>
<!-- END: flashheader -->
 
What about this one?


<!-- BEGIN: flashheader -->
<div id="ol-flashheader">
<object type="application/x-shockwave-flash" data="/templates/ol_yuriko/images/header.swf" width="700" height="230">
<param name="wmode" value="transparent" />
<param name="movie" value="/templates/ol_yuriko/images/header.swf" />
</object>
</div>
<!-- END: flashheader -->
 
^^^^ :D
 
Back
Top