Quote:
Originally Posted by cwjsaw
<?php $navbackground = of_get_option('top_background');
if ($topbackground) {
if ($topbackground['image']) {
echo '<div id="navigation" >
|
add '; after the 4th line
you did not close the php with ?>
Quote:
Originally Posted by cwjsaw
<?php wp_nav_menu(array('menu' => 'Main Nav Menu')); ?>
|
Quote:
Originally Posted by cwjsaw
</div>';
} else {
echo '<div id="top" style="background:'.$topbackground['image']. ' "></div>';
}
} else {
echo "No top background selected";
}; ?>
</div><!-- end of innertube -->
</div>
|
remove the last ; before ?>
Your debugger should show you the line number, where the error takes place.