How do I change the Sidebar text color? 1.4.2 Sugarcane

I'm trying to change the color of the Sidebar font in the picture you can barely see it.

Or i I can't change the font color is there a way I can give it a transparent background like I have for the main text? (testing this right now since I thought of it, will update if I get it to work)

Example: http://imgur.com/a/UQCfO

Comments

  • I'm not very familiar with sugarcane, but here's the html structure:

    https://twinery.org/wiki/sugarcane_html

    For the text color of the sidebar, this should work:
    #sidebar {
        color: X;
    }
    

    For the other thing:
    #sidebar {
        background-color: X;
        opacity: 0.7; /*play around with the number*/
    }
    
    .storyElement {
        opacity: 1.0;
    }
    

    Might work. I can't test it right now myself, so if it doesn't work, I'll get back to you in a bit.
  • So I did the color exactly like you before but it just doesn't seem to work. The background does though so thank you for that, I'll start messing with the opacity now.