Is there a way to hide menu items on a custom theme without having to create a new one? I'm looking for a solution like adding something to the stylesheet. Any suggestions would be appreciated!
<div id="store" class="clearfix">
<div id="header">
<h2 id="logo" {% if theme.image != blank %}class="image"{% endif %}><a href="/" id="store_home" title="{{ store.name | escape }}">{% if theme.image != blank %}<img height="35"src="{{ theme.image.url }}" />{% endif %}</a></h2>
<div id="top-pages">
<ul>
<li>{{ pages.home | link_to }}</li>{% for page in pages.all %}<li>{{ page | link_to }}</li>{% endfor %}<li>{{ pages.contact | link_to }}</li>
</ul>
</div>
<!-- #top-pages -->