Jump to content

[SOLVED] Is there a better place for the breadcrumbs to display?


Recommended Posts

I'm debating about moving my breadcrumbs to the horizontal menu bar, just like my Oscommerce site has here: www.oldfoundry.com

I'm not sure how to go about doing that with prestashop though.

Does anyone have any other ideas as if there is a better place to put the breadcrumbs? I really don't like the stock layout.

Thank you,

Jason

Link to comment
Share on other sites

You can't physically move breadcrumbs out of the center column in prestashop, as some varialbes are assigne when the central part is loaded. 

 

 

However, you can assign it an absolute position with css and move it aroud. If I were to choose, I'd move it right above the left column : )

Link to comment
Share on other sites

That is a great idea! I think it would look really nice in the location you mentioned.

 

I'm not all up on CSS and position, but I can figure it out with experimenting. Do you have any suggestions as to what the code will look like and where I should put it? Will I have a separate position for the little "home" icon image?

 

I really appreciate the help,

 

Jason

Link to comment
Share on other sites

This is my code below...

 

/* ************************************************************************************************

BREADCRUMB

************************************************************************************************ */

.breadcrumb {

margin-bottom:10px;

font-size:11px

}

.breadcrumb .navigation-pipe {margin:0 2px 0 1px}

.breadcrumb img {

position:relative;

top:7px

}

Link to comment
Share on other sites

I think I have it...

 

/* ************************************************************************************************

BREADCRUMB

************************************************************************************************ */

.breadcrumb {

position:absolute;

top:-34px;

left:-225px;

margin-top:-1px;

font-size:11px

}

.breadcrumb .navigation-pipe {margin:0 2px 0 1px}

.breadcrumb img {

position:relative;

top:7px

}

Link to comment
Share on other sites

Some of my pages that have longer title names in the breadcrumbs are being truncated, and I'm trying to get the longer ones to extend over the right side column.

 

Does anyone have any ideas about this? I'm assuming it's a margin setting, but so far, nothing has worked.

 

Thank you,

 

Jason

Link to comment
Share on other sites

Here is the screen shot... off to the left you will see the overlapping text "Chapuis and Edmond Droz" which should be continued to hover over and above the far right column that says "restoration and repair services"

 

Here is the breadcrumb below, and it needs to be all displayed on one line.

 

> Old Foundry's Library>Automatons, Singing Birds, and Moving Pictures Section.> Automata, a Historical and Technological Study by Alfred Chapuis and Edmond Droz

 

Thank you again,

 

Jason

post-660161-0-67517700-1378187540_thumb.jpg

Link to comment
Share on other sites

×
×
  • Create New...