I am trying to style the list the wp_list_page outputs, basically i would like to wrap every single page in a rounded box. All that I seem to be able to do is style the LI and UL on the CSS but i doesn’t work.
Any idea how to do that?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Out puts the follwing kind of html.
Make sure to wrap it with
ullike this<ul class="main-nav"><?php wp_list_pages(); ?></ul>This is the typical output.
In your css you can edit it like so.
If you want the page links to be rounded you can insert the border-radius syntax.
}