Changing color of one title in the header (saldi)

Topic summary

Goal: change the “SALDI” header menu item to red in a Shopify store using the Prestige theme.

Key steps and updates:

  • The helper requested the store URL; the author provided onestreet.it.
  • A CSS solution was proposed: add rules in theme.css targeting the third navigation item link and its hover state.

Provided code (central to the solution):

  • .Header__Wrapper .HorizontalList li:nth-child(3) a { color: red !important; }
  • .Header__Wrapper:hover .HorizontalList li:nth-child(3) a { color: red !important; }
    This uses nth-child(3) to target the third menu item (assumed to be “SALDI”).

Outcome: the author confirmed the CSS worked, and the issue is resolved. A screenshot was included but not essential to apply the fix.

Status: resolved; no further actions requested.

Summarized with AI on January 9. AI used: gpt-5.

OneStreet

1 Like