How To Change Breadcrumbs And Page Tittle Order - Question | JoomShaper

How To Change Breadcrumbs And Page Tittle Order

Igors

Igors

Helix Framework 3 years ago

Hi friends how to set so breadcrubs is above pagetittle when using page tittle option in menu section? I canot find in what file eddit this. Tought it shoud be in article.php but it is not there. Carrent order is breadcrums first second page tittle.

you can see it here https://vervo.lv/lv/kravu-parvadajumi/logistikas-pakalpojumi/kravu-parvadajumu-cenas

0
6 Answers
Pavel
Pavel
Accepted Answer
3 years ago #7787

This can only mean one thing, you used the wrong selectors. Here is the code for standart Helix Ultimate.

.sp-page-title .container {
    display: flex;
    flex-direction: column;
}
.sp-page-title .container .breadcrumb {
    order: -1;
}

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 3 years ago #7690

Hello Igors

Please go to Modules -> Offcanvas and change its position. For example, if you use content-top position, then it will be below the page title. But you need to customize the CSS and JS to make it work perfectly. Customization is on you only. Screenshot 2021-02-22 at 10.45.54 AM.png

Best regards

0
Igors
Igors
Accepted Answer
3 years ago #7738

Hi, Can you please say in what file i can change how helix page tittle looks? Pagetittle has two elements. Heading and breadcrumbs.

In default helix it is different. I need to make it simmilar like in first picture

0
Pavel
Pavel
Accepted Answer
3 years ago #7752

Hi. This does not require correct files. It is enough to use CSS.

.your_parent_div {
    display: flex;
    flex-direction: column;
}
.child_element_which_must_be_transferred_up {
    order: -1;
}
0
Igors
Igors
Accepted Answer
3 years ago #7777

Hi Pavel. I tried this already. for some reason it does not work.

0
Igors
Igors
Accepted Answer
3 years ago #8223

Thanks Pavel. It helped. I do css no ofen only when no choice.

I have realy problems with this template. Usualy ask questions only with helix :)

0