Link to home
Start Free TrialLog in
Avatar of mellijae
mellijaeFlag for United States of America

asked on

Spacing issue on WP theme

Ugh. Can anybody tell me why the white space is showing beneath the header module on: onlinedivorcecoach.com? In the stylesheet editor (for the theme) I set the "space around image module" to 0px, but nothing changed.

Thank you in advance! I do appreciate it.

Melanie
Avatar of LZ1
LZ1
Flag of United States of America image

I would honestly just try giving the parent a height of 155px;

<div style="display: block; clear: both; overflow: hidden; width: 900px; margin: 0pt auto; padding: 0pt; max-width: 900px; height: 155px;" class="builder-module-outer-wrapper builder-module-image-outer-wrapper builder-module-before-html-outer-wrapper default-module-style-outer-wrapper default-module-style-outer-wrapper">

Open in new window

Avatar of mellijae

ASKER

Hi LZ1.

Thank you, but I don't understand. The header is in something called an "image module," specific to this theme. The image module allows me to upload an image into the module, but does not allow me to enclose the image in a DIV.

I am pretty sure I have to work from the style sheet. Or do I just not understand something? (which I realize is highly likely)
ASKER CERTIFIED SOLUTION
Avatar of LZ1
LZ1
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jason C. Levine
The offending code is actually in the body declaration:

body {
    color: #222222;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 75%;
    line-height: 1.5em;
}

Remove the line-height to collapse everything back together.

>> Just know that you'll keep running into problems.

Heh.  We should compile all of mellijae's questions (after we fix it all) and send it to Builder's dev team...
Thank you sir.