skip to Main Content

I’m trying to remove white space on a page but I don’t understand where it coming from.
The website Is built on the WordPress platform
I’ve attached a screenshot of the whitespace.
basically, I want to remove the whitespace so the text will align with the image on the same line.
image

Here is a URL of the product page: https://medton-hedim.co.il/product/clean-aid-%d7%a1%d7%a4%d7%a8%d7%99%d7%99-%d7%9c%d7%a0%d7%99%d7%a7%d7%95%d7%99-%d7%9e%d7%99%d7%a0%d7%99/

2

Answers


  1. This should fix it:

    .summary.entry-summary {
        display: flex;
    }
    
    Login or Signup to reply.
  2. Try this:

    <div class="summary entry-summary" style="display:flex">
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search