Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Breadcrumb help


Guest

Recommended Posts

My breadcrumb bar starts over the top of the left column and it stops at the end of the middle column.

Can someone please tell me how to get my breadcrumb bar to be only over the middle column of my site?

I got it to not be over the right colmn but I can't move it from being over the left column.

I am using oscommerce version 2.3.4

 

Link to comment
Share on other sites

Inside your header.php you should see this piece of code

<div class="grid_24 ui-widget infoBoxContainer">
  <div class="ui-widget-header infoBoxHeading"><?php echo '  ' . $breadcrumb->trail(' » '); ?></div>
</div>

this is the piece that shows the breadcrumb. Now we remove that and add this following code inside the template_top.php at the very end of the file

<div class="ui-widget-header infoBoxHeading" style="margin-top:5px;"><?php echo '  ' . $breadcrumb->trail(' » '); ?></div>

that's it.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...