• Resolved Magdalena Halford

    (@magdalena-halford)


    In my sidebat, there is a bullet next to the title of each widget. I would like it to go away, but I do not know what is causing it. The css shows:

    #sidebar ul li
    {
    list-style:none;
    margin:0px 0px 0px 0px;
    padding:0px 0px 4px 20px;
    background:url(images/gobutton2.gif) no-repeat;
    background-position:top left;
    }

    The page can be seen at: https://www.halfordrealestate.com/?page_id=38

    Does anyone know what might be causing the first bullet next to the title? I like the red arrows but not the title bullet. Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter Magdalena Halford

    (@magdalena-halford)

    I am using ‘corporate theme’.

    Thread Starter Magdalena Halford

    (@magdalena-halford)

    I think it has something to do with this bit of code:

    <?php
    if ( function_exists('register_sidebar') )
        register_sidebar(array(
            'before_widget' => '<li id="%1$s" class="widget %2$s">',
            'after_widget' => '</li>',
            'before_title' => '<h2 class="widgettitle">',
            'after_title' => '</h2>',
        ));
    
    ?>

    Use
    <ul class="sideblock"> and </ul>
    instead of
    <div class="sideblock"> and </div>

    Thread Starter Magdalena Halford

    (@magdalena-halford)

    That replaced the grey dot with the red arrow that is next to the links. I want the widget title to have no bullet at all, but I want to keep the red bullets next to the links.

    Use
    #sidebar ul li ul li
    instead of
    #sidebar ul li

    Thread Starter Magdalena Halford

    (@magdalena-halford)

    I changed that in the css, and now the grey dot is back. Any other ideas? I do appreciate your help ??

    #sidebar ul{list-style:none;}
    #sidebar ul li ul li{
      margin:0;
      padding:0 0 4px 20px;
      background:url(images/gobutton2.gif) left top no-repeat;
    }
    Thread Starter Magdalena Halford

    (@magdalena-halford)

    Thank you – all fixed!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to I get rid of the bullet next to the widget title?’ is closed to new replies.