chicagocomics Posted December 4, 2009 Share Posted December 4, 2009 I speculate this is a coding issue and I'm hoping someone can spot it fast. On our store there is a plain white wrapping image in the background seen here: http://www.chicagocomics.com/store/?osCsid=c2cc63ca8c04bfe22e6aef4cda50603a When you click on a category (NOT an individual item) such as: http://www.chicagocomics.com/store/index.php?cPath=26&osCsid=c2cc63ca8c04bfe22e6aef4cda50603a The background image drops away and the footer wraps inside the left column. What is missing in the code to make it stop doing that? Link to comment Share on other sites More sharing options...
Terminum Posted December 5, 2009 Share Posted December 5, 2009 Have you checked to make sure that the footer is included right before the closing body tag in index.php? <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> Another problem might be that you have a div id="right" which you are floating left. Floating takes it out of the normal document flow which could be causing your footer to jump up. Link to comment Share on other sites More sharing options...
Xpajun Posted December 5, 2009 Share Posted December 5, 2009 Because this is not a standard osC installation you may find it difficult to get an answer here - most of us are geared up to work with tables in tables in tables rather than divs :D Only thing I can suggest is to compare the files that work and those that don't, it would seem that the closing </div> is acting at the end of your main class rather than in the footer. The 2 pages I checked which were working were the home page and the item page - both of these have a form that may force the full size. is this the only page that doesn't work or are there more? My store is currently running Phoenix 1.0.3.0 I'm currently working on 1.0.7.2 and hope to get it live before 1.0.8.0 arrives (maybe 🙄 ) I used to have a list of add-ons here but I've found that with the ones that supporters of Phoenix get any other add-ons are not really neccessary Link to comment Share on other sites More sharing options...
chicagocomics Posted December 17, 2009 Author Share Posted December 17, 2009 Have you checked to make sure that the footer is included right before the closing body tag in index.php? <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> Another problem might be that you have a div id="right" which you are floating left. Floating takes it out of the normal document flow which could be causing your footer to jump up. Thanks, it was a problem with the footer, there was an extra <div> in there that was not necessary! There was also a <div> that was in an incorrect place. Thank you everyone who replied! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.