Looks like a call to a function to me, you'll have to search through your php files for the
PHP Code:
function wp_list_pages()
function. The clue will be in any includes that are in the page you are looking at.
---------- Post added at 23:23 ---------- Previous post was at 23:19 ----------
Code:
<li class="pagenav"> <ul><li class="page_item"><a href="http://pinkforgirls.co.u
Try wrapping that in a DIV instead, you're defining a li then defining it's type, then the list again. Try:
Code:
<div class="pagenav"> <ul><li class="page_item"><a href="http://pinkforgirls.co.u
Why are you using so many classes? Do these repaet themselves over the document?