Mini Cart Text Color

For the life of me i can't figure out where to change the font color for the mini cart drop down in the upper right hand corner of my store. The thumbnails of the products in the cart show up fine but the description/price/quantity is visible because it's white. I've looked around and tried a few places and nothing i do seems to make the change.

Any help would be appreciated! Thanks

Please share the URL of your website so that we can help you

makeyourgear.com/index.php?store_access_key=letmein

Please add the following code to the CSS section of the Theme editor

.top-cart-content .cm-cart-content {
        background: lightgrey;
}

http://prntscr.com/aobh26

Please add the following code to the CSS section of the Theme editor

.top-cart-content .cm-cart-content {
        background: lightgrey;
}

http://prntscr.com/aobh26

Thanks for the info. Is there anyway to change the text color instead of the background? If not this will work.

Try the following code:

.top-cart-content .cm-cart-content a, .top-cart-content .cm-cart-content span {
    color: black;
}

http://prntscr.com/aof2qe

Try the following code:

.top-cart-content .cm-cart-content a, .top-cart-content .cm-cart-content span {
    color: black;
}

http://prntscr.com/aof2qe

Thanks for the help!

Thanks for the help!

You are welcome!