Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I have a Woocommerce shop running on my site, https://www.uproute.co.uk, and the product variation dropdown is showing white text on a white background. I don't know if this is due to the theme that I'm using or CSS that I have implemented. Is anyone able to point me in the right direction?
Happy to answer questions or provide information. Any help is greatly welcomed.
Just add this code to your css file or directly to the page in <style></style> tag:
.select2-results__option {
color: black;
}
The select2-results__option is responsible for modifying the text and more in your Woo dropdown list
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I have 3 cards on my wordpress site homepage, jookaskids.com.ng, it has a link in it already, and I don't want only the link to be clickable but the whole card.
I hope my question is built well.
Example here on this bootstrap page HERE
The Card Img Here
Wrap the whole HTML structure of the card into an a tag & specify corresponding href attribute.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
My site:
When I was setting up the store I was prompted to create a banner. I thought, gee that looks great, wonder if I will be able to remove it....
Well, I cannot seem to find where to remove the banner. It is only on the home page and only when you first load.
Thanks!
Andrew
You can disable the banner by logging into your Wordpress backend and doing the following steps:
Open Appearance > Customizer
Open the Woocommerce tab
Click on Store notice
Disable the store notice by removing the check in the checkbox.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 3 years ago.
Improve this question
The page I am talking about: https://www.eddiestech.co.uk/product/manchester-university-sign/
I have been trying to create a WooCommerce shop. I have an item set up, but the image of the product is shown twice. One as a header and one as the product image near the name. I would like to remove the header image. I have seen many CSS things to add that haven't worked!
Have you tried this?
.post-format {
display: none;
}
This is how it looks after adding that code.
Also, is weird your theme options don't include to remove the featured image.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I cannot figure out why I can scroll past the footer of the site.
Any help would be really appreciated.
I based this site off of a free template.
Thank you!
My Website here
Check your website with just below change:
Use this:
<body data-spy="scroll">
Instead of :
<body data-spy="scroll" style ="overflow: visible;">
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
Is it possible to use CSS to style the facebook share button? The problem im having is that the javascript creates an iframe meaning normal CSS on the page doenst affect the styling of the iframe.
https://developers.facebook.com/docs/plugins/share-button/
According to the Facebook Do's and Don'ts, you are not allowed to
Modify Facebook brand assets in any way, such as by changing the design or color
So I guess that settles the matter.
Should you really want to customize the content of an iframe, the question has already been asked multiple times: check out this answer, or that answer or even that one.