Manoil Posted February 16, 2007 Share Posted February 16, 2007 Hi fellas, I cannot figure out how is it possible to put the languages, shopping cart and currencies infoboxes ABOVE the header banner? The very top part of the site to be these infoboxes. Hope you got the idea and also hope for help! Thaks to everyone who pays attention to my problem! Best wishes. P.S. Checkout this template - - - - http://osc2.template-help.com/13462/index.php This is what i'm tryin to do ;) Link to comment Share on other sites More sharing options...
Manoil Posted February 17, 2007 Author Share Posted February 17, 2007 2 beers for the guy who helps me :P Link to comment Share on other sites More sharing options...
acharme Posted February 18, 2007 Share Posted February 18, 2007 if you right click and 'view source' you will see that this shop has built a table at the top, and plugged the info into the table. So the short answer is: build a table before the body tag. Don't drink beer thanx, but then I'm not a guy either :-" learn...love...laugh...live Link to comment Share on other sites More sharing options...
Manoil Posted February 18, 2007 Author Share Posted February 18, 2007 acharme I'll check this out and if it works I have the right of three wishes :P Thank you very much! Link to comment Share on other sites More sharing options...
Qim Posted December 3, 2007 Share Posted December 3, 2007 if you right click and 'view source' you will see that this shop has built a table at the top, and plugged the info into the table. So the short answer is: build a table before the body tag. Don't drink beer thanx, but then I'm not a guy either :-" Hi... I have a similar problem. Have been searching this forum for too many days now. I want have languages, currencies, search and shopping cart in the header. pls look at my shop www.ji-fashion.com/butik I have tried and tried... but no... Please help. I'm going nuts! :'( Kind regards and thanks from Sweden. My Code in the header.php <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <tr> <td align "left" valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'JI-LOGO-TOP.gif', 'ji-fashion') .'</a>';?></td> <!-- Languages, Currency, Search, Shopping Cart in Header --> <td> include(DIR_WS_BOXES . 'languages.php'); </td> <td> include(DIR_WS_BOXES . 'currencies.php'); </td> <td> include(DIR_WS_BOXES . 'search.php'); </td> <td> include(DIR_WS_BOXES . 'shopping_cart.php'); </td> </tr> </table> <!-- End of Languages, Currency, Search, Shopping Cart in Header --> Link to comment Share on other sites More sharing options...
spax Posted December 3, 2007 Share Posted December 3, 2007 Hi... I have a similar problem. Have been searching this forum for too many days now. I want have languages, currencies, search and shopping cart in the header. pls look at my shop www.ji-fashion.com/butik I have tried and tried... but no... Please help. I'm going nuts! :'( This will get you started. Just fine tune it to suit. <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr class="header"> <td align "left" valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'JI-LOGO-TOP.gif', 'ji-fashion') .'</a>';?></td> <!-- Languages, Currency, Search, Shopping Cart in Header --> <td><table border="0" width="100%"><?php include(DIR_WS_BOXES . 'languages.php'); ?></table></td> <td><table border="0" width="100%"><?php include(DIR_WS_BOXES . 'currencies.php'); ?></table></td> <td><table border="0" width="100%"><?php include(DIR_WS_BOXES . 'search.php'); ?></table></td> <td><table border="0" width="100%"><?php include(DIR_WS_BOXES . 'shopping_cart.php'); ?></table></td> <!-- End of Languages, Currency, Search, Shopping Cart in Header --> </tr> </table> Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.