Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wrote this css to make a form have the little openid logo on the left but I would like the form to retain its default look rather than get that right angley look.

<html>
<head>
<style type="text/css">
.openid-input {
  background: url("http://id.gesellix.de/logo/openid_small_logo_white.gif") no-repeat scroll left center transparent;
  height: 22px;
  line-height: 22px;
  padding-left: 18px;
}
</style>
</head>

<body>
<input type="text" tabindex="100" class="openid-input">
</body>
</html>
share|improve this question
1  
need more detail, what right angley look – Jakub Jan 21 '11 at 16:33
I think we need to see the code for the form, too - it's very hard to visualize a completely unknown form. – Surreal Dreams Jan 21 '11 at 16:36
There is nothing in your CSS that would change the look of the input besides the size and background. – David Houde Jan 21 '11 at 16:37

1 Answer

up vote 1 down vote accepted

The default input styling gets overridden as soon as you change the background property. You must set CSS styling to mimic the default styling, but this can only be accomplished with CSS3. The following styles match closely on my system:

border:1px #e4e4e4 solid;
box-shadow:inset 0 1px 2px #000000;
-moz-box-shadow:inset 0 1px 2px #000000;
-webkit-box-shadow:inset 0 1px 2px #000000;

I've created an example here (link).

You can get pretty close to the default styling without CSS3 with just:

border:1px #cccccc solid;
border-top:2px #666666 solid;
share|improve this answer
thanks for the response :) – vitiv Jan 22 '11 at 13:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.