I am developing my own web space and have been trying to manipulate a blog page i got
from a tutorial. I have been using master pages with a specific menu design. My problem is
that i want to include the "subscribe" link for my blog page only, but if i attempt to put
on the blog page it says that "only content controls are allowed directly in a content page"
If I place the menu item in the main area for the master page it places the link on
all the pages. I am at a loss as to what to do. I searched for answers on the web but if i
get nothing pertaining to what I am searching for
Master Page menu code
<div id="menu">
<nav>
<ul>
<li><a rel="external" href="default.aspx">Home</a></li>
<li><a rel="external" href="About Me.aspx">About Me</a></li>
<li><a rel="external" href="Blog.aspx">Blog</a></li>
<li><a rel="external" href="Graphic Design.aspx">Graphic Design</a></li>
<li><a rel="external" href="Programming.aspx">Programming</a></li>
<li><a rel="external" href="Web Development.aspx">Web Development</a></li>
</ul>
</nav>
</div>
blog page menu item
<div id="menu">
<nav>
<ul>
<li class="subscribe"><a href="#">Subscribe via RSS</a></li>
</ul>
</nav>
</div>
any helpful suggestions and creative criticism is greatly appreciated
Thanks for your time
Monkey

New Topic/Question
Reply



MultiQuote






|