Hey all I am semi new to PHP and need a little help on something.
I know that IE fixes some issues while it runs, now i just need to code it correctly so Firefox shows it correctly as that is what I am wanting.
Check on
http://www.madisonlee.org/photos/album/screenshots/
One is FF and one is IE. Let me know if anyone has any questions.
I would love to code this correctly so Firefox shows it nicely as FF is all I use.
Here is the code I think I need to add to:
<?php
/*
Template Name: FAlbum-wp
*/
?>
<?php include "header.php"; ?>
<div id="container">
<div id="topcontent"></div>
<div id="content">
<div class="clearer"> </div>
<h5></h5>
<div class="post">
<!-- FAlbum Start -->
<script type="text/javascript" src="<?php echo get_settings('siteurl'); ?>/wp-content/plugins/falbum/falbum.js"></script>
<script type="text/javascript" src="<?php echo get_settings('siteurl'); ?>/wp-content/plugins/falbum/overlib.js"></script>
<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>
<div class="narrowcolumn">
<?php fa_show_photos($_GET['album'], $_GET['photo'], $_GET['page'], $_GET['tags'], $_GET['show']); ?>
</div>
<!-- FAlbum End -->
</div>
<div id="bottomcontent"> </div>
</div>
</div>
<?php include('footer.php'); ?>
Now right above <?php include('footer.php'); ?> there is a <?php include('searchform.php'); ?> This is not part of the theme I am using so it just creates errors. so I took it out and that is when it throughs the formatting of the page off in FF.
Thanks all for your help in advance