Issue
I am trying to troubleshoot my wordpress. One this page, https://baseusonlinestore.co.uk/ , the images are not loading: enter image description here
It was working for a few months but not sure what changed in the plugin/background.
Any idea?
Updated the plugins but still not working.
Solution
I looked for this issue and saw that the whole problem is due to z-index.
Go to WordPress admin and follow this step Navigate to Appearance → Customize → Additional CSS
add the below custom CSS here
.col-full .image-feature img{
z-index:1;
}
.col-full .image-feature figcaption{
z-index:3;
}
.col-full .image-feature a::before {
z-index:2;
}
Answered By - Mahesh Prajapati
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.