How can I fix issues with my Craft theme store structure and collection descriptions?

Hi,

I have some problems with building a store using Craft theme.

When structuring collections in main menu, when use sub-collection, the main collection is not clickable, I mean when go to collections it opens sub menu with sub-collection, but if I click on it nothing happens.

The second question is about “default collection” template - In collection banner section I am not able to centre align collection description as there is a space reserved for collection image, that I do not want to use.

Thank you for your cooperation.

To center-align the collection description, you can try adding some custom CSS to the theme. You can do this by going to Online Store > Themes > Actions > Edit code, and then selecting the css from the Assets folder.

.collection-template .collection__description {
    text-align: center;
}