You're not kidding you're a beginner at this. The css file cannot be changed to make links from another page activate the quicksand links on your portfolio page. The:
http://terrybraunstein.com/wp-conten...cksand.init.js
file can. First make a backup copy of it, just in case. Next replace it with this updated version (right click and 'Save As'):
jquery.quicksand.init.js
Now, on your tb page, where you have something like:
Code:
<a class="button" href="http://terrybraunstein.com/portfolio/">PUBLIC ART</a>
Make that:
Code:
<a class="button" href="http://terrybraunstein.com/portfolio/?group=public-art">PUBLIC ART</a>
It will activate the class="public-art" link on the portfolio page.
Now, in case you don't know all the classes, we find them here in the portfolio page's markup (marked red):
Code:
<!-- START #filter -->
<ul id="filter" class="group">
<!-- START .active -->
<li class="active">
<a href="#" class="all" title="View all items">
<span class="term-name">All</span>
<!-- START .term-count -->
<span class="term-count">
52 <span class="triangle-down"></span>
</span>
<!-- END .term-count -->
</a>
</li>
<!-- END .active -->
<li>
<a class="public-art" href="#" title="View all items filed under I Public Art">
<span class="term-name">I Public Art</span>
<!-- START .term-count -->
<span class="term-count">8<span class="triangle-down"></span></span>
<!-- END .term-count -->
</a>
</li>
<li>
<a class="photography" href="#" title="View all items filed under II Photography">
<span class="term-name">II Photography</span>
<!-- START .term-count -->
<span class="term-count">9<span class="triangle-down"></span></span>
<!-- END .term-count -->
</a>
</li>
<li>
<a class="artist-books" href="#" title="View all items filed under III Artist Books">
<span class="term-name">III Artist Books</span>
<!-- START .term-count -->
<span class="term-count">21<span class="triangle-down"></span></span>
<!-- END .term-count -->
</a>
</li>
<li>
<a class="montages" href="#" title="View all items filed under IV Montages">
<span class="term-name">IV Montages</span>
<!-- START .term-count -->
<span class="term-count">2<span class="triangle-down"></span></span>
<!-- END .term-count -->
</a>
</li>
<li>
<a class="installations" href="#" title="View all items filed under V Installations">
<span class="term-name">V Installations</span>
<!-- START .term-count -->
<span class="term-count">4<span class="triangle-down"></span></span>
<!-- END .term-count -->
</a>
</li>
<li>
<a class="assemblages" href="#" title="View all items filed under VI Assemblages">
<span class="term-name">VI Assemblages</span>
<!-- START .term-count -->
<span class="term-count">4<span class="triangle-down"></span></span>
<!-- END .term-count -->
</a>
</li>
<li>
<a class="sculpture" href="#" title="View all items filed under VII Sculpture">
<span class="term-name">VII Sculpture</span>
<!-- START .term-count -->
<span class="term-count">4<span class="triangle-down"></span></span>
<!-- END .term-count -->
</a>
</li>
</ul>
<!-- END #filter -->
Bookmarks