the drop down menu is white with white text I would like to change this to the same maroon as the menu bar with white text (Alternativetly white background but change to black text)
the car button is not visable (Seems to be also changed to white)
3)the title of an item on each page is white how do i change this?
the Add to cart button is black with black text how do i change this to the same maroon as the menu bar with white text (Alternativetly white background but change to black text)
You need to change the css styles. If you inspect the site with google dev tools I can see you have these styles. #fff is white and if you want black you can use #000
.btn--link {
/* ... */
color: #fff;
}
/* here your anchor tags are also set to white */
a {
color: #fff;
}
Go into your assets folder and find “theme.scss.css” and search for “.btn–link” and find any others that need updating. You can also find this easily in google dev tools, right click and inspect and you can find out what styles are being applied to certain elements. Then it’s a matter of searching for that classname in your scss file