How to remove collection list arrows and display full pricing details?

Hi there!

Is there a way to remove the arrows underneath the collection list on the homepage of the boundless theme? (image attached)

also after click on a product to get more details the price is shown as 66 instead of 66.00 ( i removed the $) How do I add the .00 to that page specifically? All the other pages have 66.00 except that one. (image attached). Thanks!

You’ll need to change some code.

The arrow is set in the collection-list.liquid file in the Sections folder
It is represented by the characters.
Delete it on line 101 ( your line numbers might be a bit different, do a search if you can’t find it)

Replace:

{{ collection_title }}

with:

{{ collection_title }}

and it should be gone.

To format the price to have the .00

In the product-template.liquid in Sections folder replace

money_without_trailing_zeros

with just

money

on line 140 and 146

On line 150 remove the span class:

replace:

{{ price }}

with:

{{ price }}