[Solved] how can I eliminate the vertical space between div tags? [closed]


Two things

  1. Set the padding to 0px (or remove) for your stylesheet class “ad” in file style.css line 1793
    change from padding: 10px 5px 10px 0; to padding: 0px 5px 0px 0px;

  2. You also have a hr tag between the divs that gives you some extra space, remove that and you’ll have 0px vertical space

5

solved how can I eliminate the vertical space between div tags? [closed]