• I’ve recently developed a website using a child theme from the Coraline theme (www.civicdance.com) All looks good, but when I created a Wow Slider for my header, a space appeared between the header image and my welcome content in the body of the website.

    This may not seem like much to some, but I’d like to know how I can eliminate this space.

    I’ve tried modifying the image, but to no avail. I’m not sure if it’s a border or margin issue below the image, or something else.

    If you have suggestions, I’d appreciate it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Try adding this to your CSS:

    #wowslider-container18 {
        margin-bottom: 20px;
    }

    Thread Starter Beas2013

    (@beas2013)

    Thanks for the suggestion QPyogi, but would I add this to the parent file or the child theme file? If so, where would I insert it?

    I’ve tried to include it in the child theme’s Style.CSS file in different locations, but there are no changes.

    Thanks again.

    Ah, it’s getting overridden by the plugin’s CSS – try changing it to this:

    #wowslider-container18 {
        margin-bottom: 20px !important;
    }

    Thread Starter Beas2013

    (@beas2013)

    TADA! Excellent! It worked like a charm.
    Thank you so much. You are my WordPress hero.

    I guess it pays to learn .php and .css.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to Remove a Space’ is closed to new replies.