• Resolved cableghost

    (@cableghost)


    I am using a theme (no theme support) that injects separators in sidebar widgets. The problem is that when hierarchy is used, two separators show. See example:

    http://9001links.info/files/separators.jpg

    The separator is just a dotted line in the stylesheet:

    border-bottom: 1px dotted #cacfd1;

    Is there a way stop the theme from adding this second bottom line to a hierarchy item?

    -Scott

Viewing 8 replies - 1 through 8 (of 8 total)
  • ambrosite

    (@ambrosite)

    You would have to tell us which theme you are using, or give us a link to your live site so we can look at it.

    Thread Starter cableghost

    (@cableghost)

    I temporarily commented out the the line, so here is the link to the theme:

    http://newwpthemes.com/wordpress-theme/fiorano/

    Thank you!

    -Scott

    ambrosite

    (@ambrosite)

    I think this will work. Add it to your CSS file.

    ul.children li {
    border-bottom: none;
    }

    Thread Starter cableghost

    (@cableghost)

    Thank you ambrosite, unfortunately, that did not work.

    I believe you meant it as (which did not work)…

    .sidebar ul.children li {
            border-bottom: none;
            }
    ambrosite

    (@ambrosite)

    If you give me a link to the site where you are having this problem, I’ll take a closer look.

    Thread Starter cableghost

    (@cableghost)

    Here ya go; http://runtofinish.com/

    Thank you.

    ambrosite

    (@ambrosite)

    I think I’ve got it.

    #multi-pages-1 ul li li {
    border-bottom: none;
    }

    And if that doesn’t work, then this.

    #multi-pages-1 ul li li {
    border-bottom: none !important;
    }

    Thread Starter cableghost

    (@cableghost)

    That worked. I would not have thought to look at #multi-pages.

    Thanks again!

    -Scott

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

The topic ‘Item Separators In Sidebar Widgets’ is closed to new replies.