Hello,
I have a strange problem. The border color of the searchbar on my website auteltech.nl is red (The way I want it).
However, if I visit a Woocommerce product page the border color changes to white and also the background of the search items turn white, so that makes it unreadable.
Any idea what might be the solutions for this problem?
Thanks!
Hey EricSmeets,
After logging in, your site redirects to your hosting login screen. Where can we see the actual problem?
Best regards,
Rikard
Ah yes, I see. Can you please try again?
Hi,
Thanks for that. This CSS is causing that to happen:
@media only screen and (min-width: 1025px) {
.single-product form {
position: absolute !important;
width: 65%;
right: 0;
}
}
Do you know where that might have been added?
Best regards,
Rikard
Yes, indeed. This is located in the quick css area. I deleted it and then the problem is gone. However this piece of code is needed to change the location of the ‘add to basket’ button and the other items around it. So I prefer not to delete the code (see screenshots below with and without the code.)
With the code:
Without the code:
Hi,
Please try this CSS instead:
@media only screen and (min-width: 1025px) {
.single-product .single-product-summary form {
position: absolute !important;
width: 65%;
right: 0;
}
}
Best regards,
Rikard
Great once again! Thanks!