I'm not sure what code is showing the title of the journal that never seems to show. I want to make it brighter for the top, rather than the faded green color that's hard to read. I have no idea what it's called to adjust it. I don't know CSS sadly. Any help please? Thanks
Looking at the source code, I think it gets its color from dA's default style for links, so the CSS says nothing about it apparently. You would apply any changes in the CSS for the title to the h2 a selector. For example;
h2 a { color: #FFFFFF; }
Now that would make it white, but replace #FFFFFF by some other HEX code to make it the colour you want If you're not sure what they are I recommend doing some research into HEX codes