Individual Portfolio Page

Description

The sub-page from the Portfolio Collection is an individual portfolio page where you can add more information and content for your project.

Custom CSS

For style changes across multiple pages, add the code snippet to your Custom CSS panel and each page will be updated.

Advanced Code Injection

For style changes on one page, add the code snippet to the page Advanced Code Injection so only that page will be updated. Enclose your code in style brackets like this:

<style>

.item-pagination-link--next * {
}

</style>
 

Custom CSS

To target pagination

/* pagination */
.item-pagination--prev-next {	
}

To target the previous project title

/* previous project title */
.item-pagination-link--prev * {
}

To target the previous project arrow icon

/* previous project arrow icon */
.item-pagination-link--prev .icon svg {
}

To target the next project title

/* next project title */
.item-pagination-link--next * {
}

To target the next project arrow icon

/* next project arrow icon */
.item-pagination-link--next .icon svg {
}

To target both pagination icons

/* both pagination icons */
.item-pagination-link .item-pagination-icon svg {
}