Viewing 3 replies - 1 through 3 (of 3 total)
  • By default the wp_get_archives function outputs an unordered list of the items. Default styling of unordered list items usually included a bullet point. To remove said bullet point, you can modify your CSS with something like:

    #content li {
    	list-style: none;
    }

    Depending on your theme, this code may or may not work. You need to find the right selector for your list and it should do the tricl.

    Thread Starter markva

    (@markva)

    Thanks tollmanz,

    tried the code, but it din’t work. In the css I haven’t been able to make the requested changes either.

    Thanks again,
    Mark

    This changes requires that you make a change to the CSS. The code I provided will not necessarily work. It will only work if the CSS selector is correct. Can you paste the HTML that the wp_get_archives produces. I can help you with the selector then.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Php wp-get question related prdocues bullet points’ is closed to new replies.