Text and Checkboxes…

Homepage Community Forums General Text and Checkboxes…

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #14911
    Robert
    Customer

      Could I get a quick CSS fix so that text that should appear to the right of a text box in a form behaves properly?

      For example…

      http://members.joystartsnow.com/ask-tommy/

      “This is a test” copy should be just to the right of the check box.

      Also see here…

      http://members.joystartsnow.com/day-1/

      “Remember Me” appears in wrong place.

      Thanks 馃檪

      #14915
      Wes
      Moderator

        I also noticed this issue a while ago as well. This will automatically be fixed in the next update.

        If you look in your css around line 391 (by default) you’ll see the input, select, textarea section. The reason its appearing on its own line is because of the width: 100%; So in order to fix it, all we would need to do is either remove, comment out, or change the width to auto). Example below –

        input,
        select,
        textarea {
        	box-shadow: 0 1px 3px #eee;
        	-moz-box-shadow: 0 1px 3px #eee;
        	-webkit-box-shadow: 0 1px 3px #eee;
        	background: #fff;
        	border: 1px solid #ddd;
        	border-radius: 3px;
        	color: #999;
        	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        	font-size: 16px;
        	padding: 12px;
        	width: auto;
        }
      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.