A user encountered a mobile formatting issue in Shopify’s Ride 11.0 theme where hyperlinks appeared beneath multicolumn headings, even after adding custom CSS to create a button at the bottom.
Attempted Solutions:
Initial CSS targeting .multicolumn-card .link with display: none failed
Enhanced CSS with !important flag and more specific selectors also didn’t resolve the issue
Liquid code editing was suggested as the most reliable fix, involving removal of <a> tags in multicolumn.liquid
Complications:
The exact code structure differed from examples provided
Removing the link tags caused worse formatting issues with the scrolling multicolumn setup
Shopify marked certain elements as required, preventing deletion
Resolution:
The user ultimately decided to remove the button feature entirely rather than continue troubleshooting. The helper requested the solution be marked as accepted, though the original issue wasn’t fully resolved through the suggested methods.
Summarized with AI on October 23.
AI used: claude-sonnet-4-5-20250929.
When switching to mobile view for multi-columns, the button becomes a hyperlink underneath the heading. (Theme - Ride 11.0)
I’ve added custom CSS to get a button on mobile at the bottom of the multicolumn, however, the hyperlink underneath the heading is still there. Could someone advise on how to remove the link underneath the heading?
If the CSS above still doesn’t work, editing the Liquid code is the guaranteed way to fix this. This method removes the link from the code itself, so the browser doesn’t even render it. This is the cleanest and most reliable solution.
In the theme code editor, go to the Sections folder on the left.
Find and click on multicolumn.liquid to open it.
Remove the Opening Link Tag:
Find this code, use ctrl + F to find:
I tried the second CSS method, didn’t work and then when I search for that line in the liquid code this is the closest version of the line from your message