Ella Theme Banner Dimensions Won't Go Away

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:

  1. Navigate to: Online Store > Themes > Click three dots on desired theme > Edit code
  2. Open the base.css file in the Assets folder
  3. 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.

Summarized with AI on November 20. AI used: claude-sonnet-4-5-20250929.

I am using Ella Theme By halothemes
​Banner dimesion placeholder wont go away even after uploading a picture

https://d451d9.myshopify.com/

1 Like

Hi @obtimus ,

For some reason, your image was tag not an image. Anyway, you can follow the instructions below to hide it.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the base.css file
  3. At very end of the code, add the code below
animated-component .not_img {
    opacity: 0;
}