Change search, profile, cart button to text

Topic summary

Goal: replace header icon buttons (search, account, cart) with text labels. This requires editing the Shopify theme code; helpers asked to review the theme to provide exact instructions.

Progress: a draft preview URL was shared. After edits, a white bar appeared above the header, shown in screenshots.

Diagnosis: the top white space is caused by unnecessary/incorrect code placed in theme.liquid. A pasted theme.liquid snippet shows inline and seemingly malformed CSS/Liquid variables inside the , which likely introduced layout issues.

Recommendation given: remove the custom CSS from theme.liquid and move the provided CSS snippet into base.css at the bottom. However, the snippet shared (uppercase card titles) does not address the header icons-to-text change, and applying it didn’t fix the white bar.

Unaddressed item: removing the “Shipping calculated at checkout.” message has not been resolved yet.

Next steps: share the Header section code and clarify exactly which lines in theme.liquid to delete, or grant staff access for direct fixes. No final solution yet for converting the header icons to text; thread remains open.

Summarized with AI on December 13. AI used: gpt-5.

@nelle321 yes please remove if you need that code so please add below code base.css bottom of the file

.card__information .card__heading .full-unstyled-link {
text-transform: uppercase;
}