Hello, I am having some issues with finding the correct coding to edit in the banner of my following website: www.peruzzousa.com If you are on the homepage, starting by looking at the logo (Peruzzo USA with the American flag), please look to the right and notice the shopping cart. To the left of the shopping cart, if you hover in that area, you will see you can click on something. Please click and a “search box” shows up. I cannot find the coding in the HTML how to change the color to the search box so it shows up and my customers can see it on the homepage without blindly clicking around for it (as it is now). Does anyone know how to fix this problem with the search box not showing up? Please do help, Priscilla
I went to your page. Found the logo to the left. Then "HOME", "WISH LIST", "ABOUT US", and "CONTACT US" all clickable. Nothing else visible in the header. Hovering shows the four above clickable links plus a blue balloon that pops up. Clicking the blue balloon brings up a shopping cart. Hovering does NOT bring up anything else. Since I there is NO SHOPPING CART visible and the ONLY INVISIBLE CLICKABLE link is in fact your shopping cart, I am totally confused about you stating that there is an invisible clickable link to the left of the shopping cart. Can you be more specific?
Now I looked under the hood. No idea what you are trying to do there but here is what I see. You have a <nav> containing your search box, then a list of navigation links. Below that you have a <header> with your logo, the four visible clickable links, a search box link, then your shopping cart link. Below all of that you have A DUPLICATE list of navigation links. My perusal stopped there, but I am sure there are multiple issues since there are DOZENS of ERRORS in your code >>> https://validator.w3.org/nu/?doc=https://www.peruzzousa.com/ My questions are: 1) What purpose does the <nav> section have since everything in it is duplicated below? 2) Why do you need "<span style="display:none;" id="svgIncludes"></span>" when there is NOTHING in the SPAN container? 3) Why do you have search box code TWICE in your document? Further you are using "<use xlink:href="#cart"></use>" which half-assed works when I hover over it but is not visible otherwise and you are also using "<use xlink:href="#search"></use>" which also is not visible at all and does not even half-assed work. Since NEITHER work properly, you need to go to those two links to find your problem(s) as that is where the problems lie.