I have tried many posted solutions but none will help

I am not knowledgeable in coding per se, and I’m trying my best to attempt the solutions I have seen provided but as far as I can tell nothing is helping. I am attempting to change the text color on my hamburger drop down menu for the mobile version of my website and it’s proving difficult please help. I also need assistance on making the header’s color reach the full line on the desktop format of the site. My website is https://splendidspending.com.

Please let me know any solutions available.

1 Like
  1. Open the Dawn theme code editor in your Shopify admin by going to “Online Store” > “Themes” > “Customize” > “Edit code.”

  2. In the code editor, locate the CSS file related to your theme. It may be named something like “theme.scss.liquid” or “styles.scss.liquid.”

  3. Open the CSS file and search for the CSS selector that targets the text color in the hamburger dropdown menu. This may vary depending on your theme’s structure, but common selectors could be .site-nav__link or .nav-dropdown__link.

  4. Once you find the appropriate selector, modify the color property to the desired color. For example:

.site-nav__link,
.nav-dropdown__link {
  color: #000000; /* Change to your desired text color */
}

I have neither theme.scss.liquid nor do I have a styles.scss.liquid.