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'm trying to implement a search bar
But i was not able to display the search icon on the search bar.
Here is the code (jsfiddle). I found the default style overrides my custom style.

HTML

<div id="search_controls">
    <input type="text" class="search-box" placeholder="e.g. restaurant name, cuisine" />
</div>

input.ui-input-text, textarea.ui-input-text {
background-image: none;
padding: .4em;
margin: .5em 0;
line-height: 1.4;
font-size: 16px;
display: block;
width: 100%;
outline: 0;
}

CUSTOM STYLE

#search_controls + input.ui-input-text{
    background: url('../img/search_icon.png') 98% center no-repeat!important;
    height: 26px;
    padding: .4em;
    margin: .5em;
    font-size: 15px;
    display: block;
    width: 99%!important;
    outline: 0;
}

How to address this issue?

share|improve this question
Hi, Rephrase your question to get a response... – Vinay Nov 9 '12 at 14:49
i found below default style overrides my style DEFAULT STYLE input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; margin: .5em 0; line-height: 1.4; font-size: 16px; display: block; width: 100%; outline: 0; } – Priya Nov 9 '12 at 17:12
I edited your question and digged out the image and your code...;-) – Taifun Nov 9 '12 at 22:45

2 Answers

up vote 0 down vote accepted

probably I know now what you mean... just remove the + sign in your custom CSS and it works ;-)...

enter image description here

example code:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Test</title>
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
  <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>

  <style>
  #search_controls input.ui-input-text{
    background: url('taifun.png') 98% center no-repeat!important;
    height: 26px;
    padding: .4em;
    margin: .5em;
    font-size: 15px;
    display: block;
    width: 99%!important;
    outline: 0;
  }
  </style>
</head>

<body>
  <div data-role="page">
    <div id="search_controls">
      <input type="text" class="search-box" placeholder="e.g. restaurant name, cuisine" />
    </div>
  </div><!-- /page -->

</body>
</html>
share|improve this answer

Use this

<input type="text" class="ui-input-text ui-body-a" name="" id="searchinput1" placeholder=" Search..." value="" data-type="search">
share|improve this answer

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.