• Resolved shakeb

    (@shakeb)


    Hi guys,
    I have searched but couldn’t find the solution to my problem.
    I had small bullets for all my links in the sidebar but they have gone now.
    The Bullets were something like >> but just very small.

    I can’t find a way to get them back.
    The site is http://www.stjosephs-kanpur.com

Viewing 2 replies - 16 through 17 (of 17 total)
  • Thread Starter shakeb

    (@shakeb)

    Fixed!!

    Thank You very Much.
    I’m not a CSS expert so don’t quiet understand what you’ve done there.

    Thanks Anyway.

    Just to explain, if you’re interested…

    Do you see the difference?

    #sidebar ul ul li:before
    #sidebar ul li ul li:before

    There’s an extra li in the second one. These are called selectors, and they tell the browser which bit of your page the CSS between { and } applies to.

    In the first instance, it applies to the list item inside two uls inside the sidebar.

    In the second one, it applies to the list item that’s inside a ul which is inside a li, which itself is inside another ul — all inside the sidebar.

    The second one is more specific — in other words it’s more fussy — which is why it works!

    PS: the :before bit just means, well, before the content of the list item (as opposed to … you guessd it … after it!).

Viewing 2 replies - 16 through 17 (of 17 total)

The topic ‘Missing Link Bullets’ is closed to new replies.