I am using Ella Theme By halothemes
Banner dimesion placeholder wont go away even after uploading a picture
Topic summary
A user is experiencing an issue with the Ella theme by halothemes where a banner dimension placeholder remains visible even after uploading an image.
Proposed Solution:
Another user suggests the image may not have been properly tagged as an image and provides a CSS-based workaround:
- Navigate to: Online Store > Themes > Click three dots on desired theme > Edit code
- Open the base.css file in the Assets folder
- Add the following CSS at the end of the file:
.animated-component .not_img {
opacity: 0;
}
This CSS code will hide the placeholder by setting its opacity to zero. The issue appears unresolved pending the original poster’s confirmation of whether this solution works.
1 Like
Hi @obtimus ,
For some reason, your image was tag not an image. Anyway, you can follow the instructions below to hide it.
- From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
- Go to Asset folder and open the base.css file
- At very end of the code, add the code below
animated-component .not_img {
opacity: 0;
}