On my website portfolio: http://smalldotdesign.com/portfolio/
I use a heavily modified version of the Swatch theme from Woo Themes.
The theme makes the thumbnails for my portfolio pieces link to the lightbox. I want the thumbnails to link to the post they belong to. (if you click the title below the thumbnail
I cannot find how to fix the coding so that this can occur.
I found the element that is the problem:
<div class="portfolio-items">
<div id="portfolio-item-id-114" class="post-114 portfolio type-portfolio status-publish hentry group post portfolio-img clients identity web portfolio-item">
<div class="portfolio-image drop-shadow lifted">
<a rel="lightbox[114]" title="" href="http://smalldotdesign.com/wp-content/uploads/2012/11/Right-Futon-Logo.001-300x300.png" class="thumb" style="height: 200px;">
<img src="http://smalldotdesign.com/wp-content/themes/swatch/functions/thumb.php?src=http://smalldotdesign.com/wp-content/uploads/2012/11/Right-Futon-Logo.001-300x300.png&w=200&h=200&zc=1&q=90&a=c" alt="" class="woo-image" width="200" height="200" /> </a>
</div>
So I know I want to change it to follow a template like
<div class="portfolio-items">
<div id="portfolio-item-id-114" class="post-114 portfolio type-portfolio status-publish hentry group post portfolio-img clients identity web portfolio-item">
<div class="portfolio-image drop-shadow lifted">
<a rel="smalldotdesign.com/postURLgoeshere" title="" href="http://smalldotdesign.com/wp-content/uploads/2012/11/Right-Futon-Logo.001-300x300.png" class="thumb" style="height: 200px;">
<img src="http://smalldotdesign.com/wp-content/themes/swatch/functions/thumb.php?src=http://smalldotdesign.com/wp-content/uploads/2012/11/Right-Futon-Logo.001-300x300.png&w=200&h=200&zc=1&q=90&a=c" alt="" class="woo-image" width="200" height="200" /> </a>
</div>
I'm not a coder... but I sort of understand it. How can this be accomplished? What file (CSS, etc) do I have to modify to fix this and where is that file? I cannot find it.
I use a Wordpress.org installation for my site. I have access to the entire server for my website hosting. What folder would I find to edit a file that changes the style template? Is there a style template? Do I need to edit a certain file every time I make a new portfolio entry?
Help would be much appreciated. Thanks!
rel="..."defines not the target of the link. This is done byhref="...". Yourhrefpoints to the image, not to the post. – Ralf912 Nov 28 '12 at 23:01