"New Media" block on forums page link text is dark

Add the following to EXTRA.css. That should work on your style.

Code:
.Public .xmgCarouselContainer h3
{
    font-weight: bold;
    font-size: 13px;
    font-family: Lato, Helvetica, sans-serif;
    color: rgb(201, 201, 201);
    background-color: rgb(50, 50, 50);
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid rgb(70, 70, 70);
    border-radius: 2px;
}

.xmgCarouselContainer h3 .blockTitle
{
    color: rgb(201, 201, 201);
}
 
Two other issues:

Screenshot 2014-11-20 at 6.48.57 AM.webp

The stars look a little strange in the review writing window. They look fine on the page itself.

Screenshot 2014-11-20 at 6.48.47 AM.webp

How do I change the font color of "Rate this Media" so it pops out on this style?
 
Those strange stars are related to the style you are using. Might be worth checking for advice on that one with the designer of that style.

Code:
.commentList .rateBlock
{
   color: rgb(201, 201, 201);
}

That should work for the rate block but you may need to experiment with a colour that works well for your style.
 
Top Bottom