UI Bar Customization

Twine Version: 2.1.0
Story Format: SugarCube 2.33.2

Hello,
I’m making a story in Twine 2 on SugarCube 2.33.2. I want to customize the UI bar so the saves & restart buttons don’t have the hover colour on it. How would I do this?

Thanks!

1 Like

After playing around with it, I figured it out!

#menu-core li a:hover {
    color: hotpink;
}
#menu li a:hover {
    background-color: #222;
    border-color: #eee;
    text-align: right;
}
#menu-core li a {
    color: pink;
    text-align: right;
}

i’m experiencing some flickering so i need to play around with it a little bit more, but i’m really happy with this! also, the links are pink because i was testing link colours lol.

2 Likes