Feedback Button layout

0
Hey Everyone! Maybe it's abit unorthodox to ask but is it possible to move the standard Feedback Button position to the left side of the screen or more to the bottom right? I can Edit the widget but i dont know what to put into the Class or Style to change the position of the widget itself. Or do i need to change it in the page layout? Grtz, Robert
asked
2 answers
3

You could just add custom css, e.g:

.sprintrFeedbackNode {
    left: 0px;
}

 

answered
0

In addition to Fabian's answer you can also add

top: X%; (Where X is a numeric value, default 25)

And if you want to rotate the feedback text, you'll have to use the transform function:

transform: rotate(180deg); 

-webkit-transform: rotate(180deg); 

-ms-transform: rotate(180deg);

-moz-transform: rotate(180deg); 

 

answered