delete the blank space in the table below! << ASAP HELP ME! 1ST Dec. site open! >>

Topic summary

A user needs to remove or reduce blank space in a table on their Shopify store before a December 1st launch deadline.

Problem:

  • Excessive white space appearing in a table element
  • Urgent timeline with site opening imminent

Solutions Provided:

Two community members offered CSS fixes targeting the .hero__content__wrapper img element:

  1. Tech_Coding’s approach:

    • Navigate to Online Store → Theme → Edit code
    • Open theme.liquid file
    • Add CSS styling before the </body> tag
    • Set image width to 100%
  2. Rahul_dhiman’s approach:

    • Go to Online Store → Themes → Actions → Edit code → theme.css
    • Add similar CSS rule at the end of the file
    • Also sets width to 100% with !important flag

Both solutions involve adding custom CSS to control image dimensions within the hero content wrapper, which appears to be causing the spacing issue. The thread includes screenshots showing the before/after results.

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

Hello

I would like to delete the blank space in the table below.
Or you want to make it thinner.

Help me!!!

We are scheduled to open on December 1st, so we would appreciate it if you could respond as soon as possible.
Thank you for your support.

Please check the following before it is published.

19964f-7b.myshopify.com

password: aolyia

Hello @Havana2024

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.hero__content__wrapper img { width: 100% !important; }

RESULT:

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Hello @Havana2024
Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.

.hero__content__wrapper .rte img {
width: 100% !important;
}

Thanks