Home Forums WordPress Themes – Premium Encounters Extra space between image & text in Boxed Images

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #14312
    Robyn Long
    Member

    Greetings,
    Thanks for the tutorials on boxed images!

    My boxes have extra space between the images and text and I cannot figure out how to remove this space and move the text up (and there isn’t any extra coding for space either)
    http://69.89.31.99/~robynlon/

    Thanks so much for any tips!

    #18574
    Sushil Adhikari
    Moderator

    You’re welcome on the tutorial for the boxed images…it’s a newer video (with better audio too) for the boxed images. Anyway, the extra space you see is a result of the poor quality WP editor. When it seens a new line or space between to lines, it thinks it’s a paragraph, so it adds or wraps the item in a paragraph tag. Annoying actually.

    When you paste the code into the editor, look for this part:

    Image Description

    Make sure it’s on one line as you see above. If that still keeps the paragraph spacing (which is actually a margin on the

    tag, then you can always add some custom css to your theme like this:

    .thumbnail p {
    margin-bottom: 0;
    }

    Best to do that in a child theme or a plugin that lets you edit the theme css, for example, Jetpack has Edit CSS, but there are other plugins that do editing. Remember that changing any core files means you lose the modifications should you update the theme, hence why the other methods above are best.

    #14313
    Robyn Long
    Member

    Awesome, worked out!!! Thanks SO much–looks much better now!

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.