Quote:
...so in this case it looks like I'd set the home page to a static page and then use the plugins short-code (styling their template as I wanted?
|
that's what I would do.
Quote:
Have there been no other solutions to this issue within Atahualpa that have worked for anyone? Or as many times as a variation of this has been asked, has anyone actually completed a solution somehow (plugin or otherwise) ?
|
it has to do with the way the HTML is created. Atahualpa creates a div for the post with a div for the post header, a div for the thumbnail and post content and a div for post footer like this
HTML Code:
<div id="post-1178" class="post-1178 post type-post status-publish format-standard has-post-thumbnail hentry category-markup odd">
<div class="post-headline">...</div>
<div class="post-bodycopy clearfix">...</div>
<div class="post-footer">...</div>
</div>
what you want is something like
HTML Code:
<div id="post-1178" class="post-1178 post type-post status-publish format-standard has-post-thumbnail hentry category-markup odd">
<div>
<a><img...thumbnail />
<div class="post-headline">...</div>
<div class="post-bodycopy clearfix">...</div>
<div class="post-footer">...</div>
</div>
</div>
which you can do with the plugin.
To do it within Atahualpa would entail quite a bit of coding and the next person would say, oh, but I want it this way....Footer first then body then thumbnail centered under that ...