Hello! I've been looking around everywhere for an answer but haven't found any yet. I'm using theme #19 (love it btw) and want to do two things: #1, make the "content" tab lead to the homepage of the blog only; #2, add another tab that, like the "content" tab, opens in the blog itself rather than opening in a new window (I want to use this to add an "art" tab so people can browse my art in the same window). Are these things possible? Especially interested in #2. Thank you!
Hi!
For the first thing, I'm guessing you want the content link to do what the home link does? I suppose you can just rename them. Look for these two lines:
<a href="/"><div class="link" id="home-link">home</div></a>
<div class="link link-selected" id="content-link" data-id="content">content</div>
The first line is the home link and the second line is the content link. You can rename them by changing the word before the </div> (and right after the >) on both lines. You can also just remove the whole second line if you don't like how that content link works.
And for the second thing, that'd be a pretty difficult thing to code unfortunately, no easy fix for that. You can use these to add a link to the navigation:
and then put /tagged/ARTTAGHERE in the URL, but there's not an easy way to have it come up like the content link does it unfortunately.









