• Hi everybody,

    I have problem that probabl many people had already but I cannot see any solution reading these posts.

    If I add a picure in my site the text wraps around it nicely, but the bulletpoints do not follow them, they stay at teh very beginning (left side)of the page >> hidign behint the picture.
    How can I set that the bullet point becomes “part of the text” and behaves like it.
    I hope it is understandable, if not please visit: http://fittmama.freevar.com/index.php/taplalkozas/cikkek/vegaetrend/

    Thanks a lot,

    Mark

Viewing 4 replies - 1 through 4 (of 4 total)
  • Go in your CSS stylesheet (style.css).

    Look for this and delete line 2 and 3…:

    .Post ul li
    {
      padding:0px 0 0px 11px;
      background-image: url('images/PostBullets.png'); /* !!! DELETE THIS LINE !!! */
      background-repeat:no-repeat; /* !!! DELETE THIS LINE !!! */
      margin:0.5em 0 0.5em 0;
      line-height:1.2em;
    }

    Always in your stylesheet, look and add line 2 and 3…:

    ul
    {
      list-style-type: none;
      list-style-image:url(images/PostBullets.png); /* !!! ADD THIS LINE !!! */
      list-style-position:inside; /* !!! ADD THIS LINE !!! */
      color: #403A3F;
      margin:0;
      padding:0;
    }
    Thread Starter markovacs

    (@markovacs)

    Thank you Justin01,
    the bullets are ok now.
    Is there a way to have the second line of text not begin uder the bullet point but inline with the text above?
    Please check the same site if you want to see waht I mean.

    Thanks again.

    Mark

    Yes, you can do this by changing the “list-style-position:inside;” to “list-style-position:outside” in the “ul”, but this would require some other changes/tweaks and sadly, I don’t have the time for this.

    I would recommand you pay someone or wait for someone else on this forum to correct this problem for you.

    Good luck.

    Thread Starter markovacs

    (@markovacs)

    anyone else could maybe help me with this please?

    Thank you

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

The topic ‘Bullet points hide behind picture’ is closed to new replies.