I've been trying to work this out for two days and am just baffled.
I would like my custom post type archives to display using the same style as categories.
Here's what a category listing looks like on my site. This display is also working for all
However the listing for the archive of all posts that belong to the custom post type "antique maps" - looks like this: I'd really like it to use the same style as the category and custom taxonomires. In particular, although I'm pulling featured images which are large, they are getting resized.
I'm using the Views plugin, and this is what the view code looks like. Featured images should be displaying larger. I can't figure out how to get that. Is there a way to tell this to use same style as the other page.
[wpv-layout-start]
[wpv-posts-found]
<!-- wpv-loop-start -->
<table width="100%">
<wpv-loop wrap="2" pad="true">
[wpv-item index=1]
<tr><td>[wpv-post-featured-image]<br>[wpv-post-link]<br>[wpv-post-excerpt]</td>
[wpv-item index=other]
<td>[wpv-post-featured-image]<br>[wpv-post-link]<br>[wpv-post-excerpt]</td>
[wpv-item index=2]
<td>[wpv-post-featured-image]<br>[wpv-post-link]<br>[wpv-post-excerpt]</td></tr>
[wpv-item index=pad]
<td></td>
[wpv-item index=pad-last]
<td></td></tr>
</wpv-loop>
</table>
----------
And this is what Firebug is showing me on the pages where the images are sized correctly:
<div class="full_img fix">
I think I need to use one of those classes somehow, but I can't figure out where and how.
I tried it like this - but that didn't work:
<tr><td><div class="full_img fix">[wpv-post-featured-image]<br>[wpv-post-link]<br>[wpv-post-excerpt]</class></td>
I realize this is a mix match of Views and Pagelines queries, but would be very grateful for your help!











