1. Can I change the style/css of the "feedback" button? 2. Can I get a text message notification?

  • Profile Image
    dsignbydaniel
    Asked on May 01, 2010 at 01:41 PM
    I love the new "feedback' form option you added but wanted to style the feedback button so it can fit the style of my site. Also I have the iPhone with the jotform app (It rocks!) and I do get push notification but wanted to know if a text message notification is possible?
  • Profile Image
    seyhuns
    Answered on May 03, 2010 at 10:43 AM
    Hi,

    You can change the color of your feedback button by adding this CSS code to your page:

    #feedback-tab-link{
        background-color: red !important;
    }

    We are sorry we do not have a text message option.

    Thank you,

    ~Seyhun
  • Profile Image
    Lyngholm
    Answered on November 21, 2010 at 01:13 PM

    I cant make this work.. I have the tab, but can't change the color..?

  • Profile Image
    Aytekin
    Answered on November 22, 2010 at 10:40 AM

    We now have an "Inject Custom CSS" feature. You can probably add this code there and apply it to your form.

    http://www.jotform.com/answers/tag/Inject%20Custom%20CSS

  • Profile Image
    Sladestyle
    Answered on March 02, 2011 at 04:29 PM

    I have tried to change the Feedback button orange color by alter the CSS using the "Inject Custom CSS" feature but still no luck. 

    Any other thoughts or possibilities?

    Thank you.

    Slade

  • Profile Image
    seyhuns
    Answered on March 03, 2011 at 04:00 AM

    Hello,

    We have released a new version of Feedback Button option. Click "Embed Form" under "Setup & Share" tab. Click "Feedback" and click "Customize". You will see the color options for the button background and text.

  • Profile Image
    Sladestyle
    Answered on March 03, 2011 at 04:05 AM

    Thank you for your response seyhuns!  I did find that about an hour ago and it is PERFECT!

    One question--with the original Feedback button the text "Feedback" was facing towards the view when on the right side and now it seems to be facing 'away'.  I'm not certain this makes sense.  The site is still under construction but I have uploaded what I have thus far so you can see what I mean.

    click here

    Is there any way to change the button text orientation?

    Thanks again!

    Slade

  • Profile Image
    seyhuns
    Answered on March 03, 2011 at 04:21 AM

    I looked and its perfect =)

    You can change the orientation of the text by adding "reverseButtonText: true" to the script. Here is an example:

    <script src="//www.jotform.com/min/g=feedback" type="text/javascript">

    new JotformFeedback({

    formId: "1********",

    buttonText: "Untitled Form",

    base: "http://www.jotform.com/",

    reverseButtonText: true,

    background:'#F59202',

    fontColor:'#FFFFFF',

    buttonSide: "bottom",

    buttonAlign: "right",

    type:false,

    width: 700,height: 500});

    </script>