• Hi,

    I have a sidebar where next to my custom bulletpoints for some reason the original bullets are showing too.

    So I have two sets of bullets in the sidebar.

    I want to get rid of the “ticks” but not the double arrows.

    Anyone any idea. I think I have read all the post regarding this but I cannot find the coding for this.

    I found the double arrows:

    .BlockContent-body ul li
    {
      padding:0px 0 0px 9px;
      background-image: url('images/BlockContentBullets.png');
      background-repeat:no-repeat;
      margin:0.5em 0 0.5em 0;
      line-height:1.2em;
    }

    But not why it is using both at the same time

    Thanks for any suggestions

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter markovacs

    (@markovacs)

    and the page link: fittmamablog.hu

    find this style in style.css (about two thirds down):

    /* begin PostBullets */
    /* Start Content list */
    ul
    {
      list-style-type: none;
      list-style-image:url(images/PostBullets.png);
      list-style-position:outside;
      color: #403A3F;
      margin:10px;
      padding:0;
    }

    and delete the line with the image.
    if you want to keep the tick style bullets for the content area,
    don’t delete the line with image,
    but change the ul into .content ul

    Thread Starter markovacs

    (@markovacs)

    .content ul that is the way!

    But I have to admit, I would have never figured it out.

    Thank you alchymyth.

    it helps to have the right tools, and these ones are free:
    firefox developer addon;
    or even more into details:
    firebug.

    if you plan to do more customisation of wordpress themes or web stuff in general, have a look – it’s worth it ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘double bullets’ is closed to new replies.