How to add Arrows in Portfolio post

How can I add navigation arrows to the portfolio post page ? I am using Integrity stack.

now no arrows.

can I add custom arrows? maybe some vector arrows? It would be great to do custom arrows.

see this photo for example

Hi there,

You need to enable the Breadcrumbs by going to X > Launch > Options > Header and make sure that you show the heading section of the page for the portfolios in the Integrity stack, as that is where the arrows are shown.

You can change the arrows and use your vector based arrows if you want. You will need a little bit of CSS. For example here is a sample code you can use to use an image instead of the right arrow:

.x-icon-arrow-right[class*="x-icon-"]:before {
    content: "";
    background: url('http://clipground.com/images/arrow-1.png') no-repeat 0 0;
    background-size: contain;
    width: 30px;
    height: 30px;
    display: block;
}

Use the same thing to have the left image and you can have any image such SVG ones.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.