Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

HEADER


Manoil

Recommended Posts

Posted

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 ;)

Posted

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

  • 9 months later...
Posted
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 -->

Posted
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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...