Feedback button custom styling

1
Hi Guys, I am trying to customise the feedback button. I am stuck because the css for the feedback is stored on the sprintr.home.mendix.com server and has an "important" attached to the css tag background. Therefore I am finding it difficult to change the background. Any ideas????
asked
2 answers
2

Chris check out https://sickpay.lv.com/ I have customised the feedback button there. Just add a class above it in the css styling:

    .lv .sprintrFeedbackNode {
background: transparent url(images/layout/feedbackButton.gif) no-repeat !important;
color: white !important;
cursor: pointer !important;
height: 102px !important;
position: fixed !important;
right: 0 !important;
vertical-align: !important;
width: 100px !important;
z-index: 10000 !important;
bottom: 0 !important;
top: auto;
}

.lv is on the body of the html.

answered
0

There's a sliding panel widget and feedback API in the appstore, you should be able to customize the sliding panel and use the feedback api to post the data back to sprintr.

answered