I want to create a block which is structured like navigation block

LINK1
LINK2
-LINK3
-LINK4
LINK5

how to theme the block?
or is there any other way to get this result

Comments

sherifmayika’s picture

If I undestand you correctly, adding primary links or secondery links to your page.tpl.php would help you.

here it is

if (isset($primary_links)) :
print theme('links', $primary_links, array('class' => 'links primary-links'))
endif;

if (isset($secondary_links)) :
print theme('links', $secondary_links, array('class' => 'links secondary-links'))
endif;

sherifmayika’s picture

If I undestand you correctly, adding primary links or secondery links to your page.tpl.php would help you.

here it is

if (isset($primary_links)) :
print theme('links', $primary_links, array('class' => 'links primary-links'))
endif;

if (isset($secondary_links)) :
print theme('links', $secondary_links, array('class' => 'links secondary-links'))
endif;