• Resolved AC_PCC

    (@ac_pcc)


    Hi,
    ‘m using Fruitful for my first post-school project and thanks to the forums have been able to work through some questions, but not this one:

    Can you tell me what part of the CSS I should change to remove text that is appearing to the right of a blog image? You can see an example here.

    In the upper right corner, the word “(At” should be at the beginning of the sentence below the image and caption, which starts “this point…”

    The text only hangs next to the image in the widest port view; it drops into place for tablet, phone views.

    Thank you for any help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey there,

    It’s possibly a float, hard to know for sure without seeing your site so can you please link direct to the page this happens on?

    Cheers.

    Thread Starter AC_PCC

    (@ac_pcc)

    Thanks, really angry you didn’t pre-warn me though!!!!!

    Now I want waffles! :-/

    ha ha

    Something like this should work:

    p {
    display: inline-block;
    }

    This is very broad and will affect all paragraphs. You could be a little more specific and target the paragraphs of only post content like this:

    .post-content p {
    display: inline-block;
    }

    Hope this helps.

    Take care.

    Thread Starter AC_PCC

    (@ac_pcc)

    Would you be less angry if I declared you are a GENIUS?!

    Second option worked. I had been trying to target the image, among other things, and never thought of the p tag.

    I’ll send you a waffle!

    That’s awesome, but I want some waffles!!! 🙂

    I suspect by the time they get from Oregon to the UK they might be a little cold, and not so tasty. If you manage to make it to WordCamp Europe I’ll happily accept them there. ha ha 🙂

    I suspect something was overruling the first one, the second was just more specific. 🙂

    Have a great weekend!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove text wrap’ is closed to new replies.