Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

How to make the navigation arrows darker?

edited May 2016 in Help! with 2.0
Does anyone know how to make the navigation arrows darker?
I don't know CSS.
[img][/img]Screenshot_2016_05_07_13_58_00_1_picsay.jpg

Comments

  • @20GT:
    Your question is in relation to Twine 2 and should of been asked within the
    Help! with 2.0 category.

    You also need to state which Story Format you are using when you ask a question, as answers can be different for each one. Based on your image I am going to assume that you are using Harlowe.

    The How do I replace or style the Back and Forward buttons? thread explains how to change the style and text of those links.

    In this case the links appear faded/opaque because they have an opacity value less than 1.0, increasing the opacity value in both the tw-icon and tw-icon:hover CSS selectors will make them both less faded/opaque.
    /* Increase the default opacity of both of the sidebar links. */
    tw-icon {
    	opacity: 0.75;
    }
    tw-icon:hover {
    	opacity: 1.0;
    }
    
    ... you could also use a font-weight property to increase the visual difference between how the links appear normally and how they appear when the mouse cursor is hovering over them.
    tw-icon {
    	opacity: 0.75;
    }
    tw-icon:hover {
    	opacity: 1.0;
    	font-weight: bold;
    }
    
  • thanks
Sign In or Register to comment.