ummmm, I guess I don’t understand, because I just tried what I thought you suggested and it didn’t work.
I made a template for the main section (the left hand column that the blog entry appears in) and I made a template for the sidebar. I turned the dynamic to “off” for the main, left hand side, and turned it on for the right side. I then embedded the two, and now the links won’t update the left hand side.
Here’s some code -
Left hand template -
<div id="entryWrapper">
<div id="entryContent">{site_url}images/word-journal.png
<div class="journalBox">{exp:weblog:entries weblog="mikes_journal" limit="1" show_future_entries="yes" show_expired="no" orderby="journal_date" sort="desc" dynamic="off"}
<div class="date">{journal_date format="%m/%d/%y"}</div>
<div class="title"><u>{title}</u></div>
<div class="content">{journal_body}</div>{/exp:weblog:entries}
</div>
</div>
And the right hand / sidebar code -
<div id="journalSidewrap">{exp:weblog:entries weblog="mikes_journal" limit="8" show_future_entries="yes" show_expired="no" orderby="journal_date" sort="desc" dynamic="on" paginate="top"}
<div class="journalSide1">
{paginate}
{if {total_pages} > 1}
Page {current_page} of {total_pages} pages {pagination_links}
{/if}
{/paginate}
<div class="date">{journal_date format="%m/%d/%y"}</div>
<div class="title"><a href="http://{url_title}"><u>{title}</u></a></div>
</div>{/exp:weblog:entries}
</div>
</div>
Thanks,
Scott