How can I center the multicolumn header on my Pulse Device website?

My website is pulsedevice.com and I am looking to center the multicolumn header that says “Pulse Device vibration technology is supported by research from…”

@epoll24 - add this css to the very end of your base.css file and check

@media screen and (min-width: 990px){
.title-wrapper-with-link {justify-content: center;}
}

Hello @epoll24 :waving_hand:

In Shopify Admin, you can go to Themes, choose Edit theme, open file base.css add this code snippet at the bottom

.multicolumn .title-wrapper-with-link {
    justify-content: center !important;
}

Hope that helps :ok_hand:

This works for desktop but how do I center it on mobile as well?

@epoll24 - remove media query and add this line only

.title-wrapper-with-link {justify-content: center;}

What do you mean by remove media query?