Skip Navigation

How to remove the Xs? (Tree Style Tab)

I'm using the Proton theme of TST, and I really want these X buttons to only appear on hover. I know that's possible: It's how the Xs function in the Sidebar theme of TST. However, I don't like the Sidebar theme otherwise.

Does anyone know how to change the TST Proton theme to make the X button only appear on hover?

Thank you!

1
1 comments
  • follow the live testing guide here

    use the remote debugging thing to find the X element, then add something like

    .my_x_button's_class {
        opacity: 0 !important;
    }
    .my_x_button's_class:hover {
        opacity: 1 !important;
    }
    

    to userchrome.css

    1