Hello :)
I was hoping to get some help with the pathway font on the minimal theme as it looks too small. I need to increase the font size. How can this be done ?
Solved! Go to the solution
Add this to the bottom of your 'theme.scss.liquid' file:
.breadcrumb { font-size: 1.25em; }
Adjusting the number (1.25) up or down will allow you to control the size of the font.
Thank you so much :) it worked !
I had one other question, would I be able to place it more to the left ?
By default it is aligned left, so I'm not sure why yours is centred. But anyway, if you change the code I gave you to this, that should sort it:
.breadcrumb { font-size: 1.25em; text-align: left; }
Hi John, thank you again for helping ! I tried using that code but it isn't working.
I'm confused, your breadcrumbs are now left aligned in your screenshot and I can see them on your live website working as intended.
Hi Jon,
it worked ! I think it lagged a bit from my side before kicking in. Thank you so much :)
This is an accepted solution.
OK no problem. Please accept this as a solution as it helps other people find it if they are looking to do the same thing.