How can I change my webpage text color to black and bold?

Hey guys,

On this page https://directcomputers.myshopify.com/collections/gaming-pcs-bundles password: flowma

I have the text:

However, they’re in red how could i get these to black and bold? Thank you,

hello @Anonymous

Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.subcollections-featured-collection__subcollection-menu .subcollections-featured-collection__subcollection-menu-link{

    color: #0c0100;
    font-weight: bold;
}
.subcollections-featured-collection__subcollection-menu.subcollections-featured-collection__subcollection-menu-link {
    color: black !important;
    font-weight: 600 ;
}

@Anonymous
Add this code in theme.scss

@Anonymous

Please add the following code at the bottom of your assets/theme.css file.

ul.subcollections-featured-collection__subcollection-menu .subcollections-featured-collection__subcollection-menu-link {
    color: #000;
}

Hope this works.

Thanks!