Announcement

Collapse
No announcement yet.

Search case

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Search case

    Hi,

    The "Search "case is placed in the left side of my webside ( http://shop.belgianshop.com ) . But I have noted that the letters placed in the case are invisible, I don't see what I'm typing. Could you help me?

    Thank you very much,

    Bruno

    #2
    Having your right-click disabled is a pain and will not stop someone who wants to really view your code etc.

    For some reason you have this in your input:
    id="{90ACE5A0-D414-473F-97A1-7A7B2769BB96}"

    Modifying the code on your page to this gets it working:

    Remove this:
    <input type="text" name="SS" size="15" value="Quick Search" onfocus="this.value='';" id="{48DF190F-52FB-4BAE-995C-F106196EBCAD}"/>

    and modify the code on your page to this:
    <input type="text" onfocus="this.value='';" value="Quick Search" size="15" name="SS"/>

    Also try resetting the search back to default.

    Comment

    Working...
    X