Jump to content

Use images in navigation


Cairan
 Share

Recommended Posts

Hey. After playing around with the navigation for a bit I was curious if it is possible to use images instead of titles in the navigation.
 

$homepage = $pages->get("/"); 
$children = $homepage->children("limit=21");
$children->prepend($homepage);

foreach($children as $child) {
        $class = $child === $page->rootParent ? " class='on'" : '';
	echo "<li><a$class href='{$child->url}'>{$child->nav_image}</a></li>";
}

At the moment I have this which ofcourse won't work. Is there a way to display $child->nav_image as a image?

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...