weyus
Forum Replies Created
Viewing 1 replies (of 1 total)
-
Forum: Plugins
In reply to: [Subpages in Context] Indenting sub pages, highlighting current pageI ended up adding this custom CSS to style the list returned by wp_list_pages:
<? #Custom CSS - WG 08/22/13 ?> <style> ul.sidenav li { padding: 0 5px; } ul.sidenav li a { color: black; } ul.sidenav li:hover { background-color: #ff0000; } ul.sidenav li:hover a { text-decoration: none; color: #ffffff; } ul.sidenav li.current_page_item { background-color: #ff0000; } ul.sidenav li.current_page_item a { color: #ffffff; } ul.sidenav li:nth-child(1) { font-weight: bold; } ul.sidenav li:not(:nth-child(1)) { margin-left: 10px; } </style>
Viewing 1 replies (of 1 total)