PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Button language and css

  1. Link: http://cphrecmedia.dk/CPHMUSIC/?page_id=138

    Somehow my submit-button is not in danish eventhough my language is set to danish. Where can I translate the button?

    As you can see the forms are not looking the same. How do I change that (I havent found the css-code to alter the css to fix this)

    Posted 12 years ago on Thursday August 25, 2011 | Permalink
  2. You can change the button text in the form settings for each form. Look under the "advanced" tab

    http://www.gravityhelp.com/documentation/page/Form_Settings

    Please be specific about the differences in your form and what you would like to "fix" and we'll try to help out.

    Posted 12 years ago on Thursday August 25, 2011 | Permalink
  3. Thanks... I was blind :)

    As for the differences in the forms, please look at "Din emailadresse" and "Mobil". They both have some kind og shadow inside and is different than the fields in top and below... I really cant find the css-classes that causes this... Its the same in the backend

    Posted 12 years ago on Monday August 29, 2011 | Permalink
  4. You're using the HTML5 "email" type fields for those 2 and your theme doesn't have styles in place for those input types. The theme specifies styles for the "text" and "password" inputs, but leaves those out.

    You can replace the 2 rules that start on line 125 of your theme's style.css file with these. That should set the styles to match the other fields.

    [css]
    input[type=text],
    input[type=password],
    input[type=email],
    input[type=url],
    input[type=tel],
    input[type=number],
    select
    {
    	background: #fff;
    	padding: 4px;
    	font-size: 12px;
    	margin: 0;
    	font-family: Helvetica, Arial,Verdana,sans-serif;
    	color: #666;
    	-webkit-box-shadow: -3px -3px 0 0 #F5F5F6, 3px 3px 0 0 #F5F5F6, 3px 0 0 0 #F5F5F6, 0 3px 0 0 #F5F5F6, 3px -3px 0 0 #F5F5F6, -3px 3px 0 0 #F5F5F6;
    	-moz-box-shadow: -3px -3px 0 0 #F5F5F6, 3px 3px 0 0 #F5F5F6, 3px 0 0 0 #F5F5F6, 0 3px 0 0 #F5F5F6, 3px -3px 0 0 #F5F5F6, -3px 3px 0 0 #F5F5F6;
    	box-shadow: -3px -3px 0 0 #F5F5F6, 3px 3px 0 0 #F5F5F6, 3px 0 0 0 #F5F5F6, 0 3px 0 0 #F5F5F6, 3px -3px 0 0 #F5F5F6, -3px 3px 0 0 #F5F5F6;
    	border: 1px solid #c9c9c9;
    	margin-top: 5px;
    	width: 180px;
    }
    
    input[type=text].blur,
    input[type=email].blur,
    input[type=url].blur,
    input[type=tel].blur,
    input[type=number].blur
    {
    	color: #ccc;
    }
    Posted 12 years ago on Monday August 29, 2011 | Permalink