A ghost textfield interferes typing on searchbox

Home Forums Product Support Forums Ajax Search Pro for WordPress Support A ghost textfield interferes typing on searchbox

This topic contains 2 replies, has 2 voices, and was last updated by Ville Terämä Ville Terämä 10 years, 7 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #660
    Ville Terämä
    Ville Terämä
    Participant

    Hi,

    For some reason I’m now able to write on ajax suggestion text area (?) instead of the actual searchbox, which is just a bit below the searchfield text. This happens way too often and to click on the search box itself, I need to click properly on the reference text.

    You can see the suggestion text now written full (in light grey) on screenshot and the reference text intact (in black).

    How to get this so, that there is no other textfield to write in..?

    – Ville

    Attachments:
    You must be logged in to view attached files.
    #662
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi!

    I see a styling conflict between the two boxes, naturally it is not clickable.
    In the template style.css file (themes/fimage/css/style.css) the lines for ajax search pro need some modification:

    /* For Pro Ajax Search */
    
    input.orig {
    	text-transform: uppercase;
    	padding-top: 0;
    	margin-top: 0;
    	height: 1em;
    	color: #ccc;
    }

    Change it to:

    /* For Pro Ajax Search */
    
    input.orig, input.autocomplete {
    	text-transform: uppercase;
    	padding-top: 0;
    	margin-top: 0;
    	height: 1em;
    	color: #ccc;
    }

    This should place the autocomplete field back to it’s normal position, because it needs the exact same styling as the original field.

    Let me know how it goes!

    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #663
    Ville Terämä
    Ville Terämä
    Participant

    Ab fab, that did the trick 🙂 I assumed something like this, after I had to tweak the field positioning due to styling of forms in general in this site.

    Thanks for the extremely quick response.

    – Ville

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.