Topic: JuiceBox icons background [SOLVED]

I would like to suppress the rounded corners of the JuiceBox icons background (using Juicebox-Pro 1.5.0 and Classic Theme).

On Button Bar background the following code seems to work :

<style type="text/css">
    /* Button Bar */
    div.jb-bb-bar {
    -moz-border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    border-radius: 0px !important;
    }
</style>

I don't find the right way to do the same thing on Go Back (home icon) background.
Thank you in advance.

Re: JuiceBox icons background [SOLVED]

Try setting the border-radius property on div.jb-go-back.

<style type="text/css">
    /* Back Button */
    div.jb-go-back {
        -moz-border-radius: 0px !important;
        -webkit-border-radius: 0px !important;
        border-radius: 0px !important;
    }
</style>

Hopefully this will work for you.

Re: JuiceBox icons background [SOLVED]

It works.
Thanks a lot, again.

Re: JuiceBox icons background [SOLVED]

You're welcome.