Hi,
I’m trying to center my page title in Venture theme. I saw another suggestion to modify the page.liquid sheet and I updated it but the title still remains in the left-han corner. Any suggestions? It is centered on mobile but not on desktop. Also can I make that font larger without enlarging all of the site headers? Thank you.
Changes made:
{{ page.title }}
{% section ‘featured-products-subsection’ %}
Thank you. It’s the title in the top left hand corner of my homepage which is www.consignmentondemand.com
Do this to fix it in 20 seconds:
- In your Shopify Admin go to: online store > themes > actions > edit code
- Find Asset > theme.scss.liquid and paste this at the bottom of the file:
@media (min-width: 749px){
[id] .site-header__upper > .grid{
display: flex;
flex-direction: column;
text-align: center
}
[id] .site-header__upper > .grid > *{
width: 100%;
}
}
Please let me know whether it works.
Kind regards,
Diego
Yes! Thank you. It fixed it!