Feedback widget styling

1
Can someone point me in the right direction for some styling of the FEEDBACK widget ? I assume I need to add code to the layout or custom stylesheet ?? Or do I need to mess around with Index.html too.... ?? I am looking at: 1) transparancy ? with mouseover solidity 2) coloration 3) position (no problem with it being on the right hand side, but I would like to be able to position it up or down on the screen....
asked
1 answers
2

Add changes to your custom.css of your theme. This sample puts in the right bottom corner.

.tundra .sprintrFeedbackNode {
    background: url(images/feedback_horizontal.png) no-repeat scroll 0 0 transparent !important;
    bottom: 0 !important;
    color: white !important;
    cursor: pointer !important;
    height: 35px !important;
    position: fixed !important;
    right: 0 !important;
    vertical-align: bottom !important;
    width: 102px !important;
    z-index: 10000 !important;
     top: inherit;
}
answered