Home > database >  Trying to remove with space in a product page
Trying to remove with space in a product page

Time:10-23

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-ספריי-לניקוי-מיני/

CodePudding user response:

This should fix it:

.summary.entry-summary {
    display: flex;
}

CodePudding user response:

Try this:

<div  style="display:flex">
  • Related