Can anyone help with the styles in the menu?
How to add a class "active" only for active links?
li.active { background-color: #D74145;}
<ul id="topnav">
<?php
$root = $pages->get("/");
$children = $root->children();
// insert the following line
$children->prepend($root);
foreach($children as $child) {
echo "<li><a href='{$child->url}'>{$child->title}</a></li>";
}
?>
</ul>