(this is great! something I should fix!)
@dankrosso: I *think* that’s possible. My explanation below will depend on your level of understanding with CSS:-
Assuming your content is marked similarly to this:-
(your posts appear here)
<div class="content">
<h2>Post title here</h2>
<p>Post content here with an <a href="">anchor/link</a> text here etc etc</p>
</div> (end of class="content")
(your sidebar appears here)
<div class="sidebar">
<ul>Widget 1 Title
<li>Sidebar 1 content here</li>
</ul>
<ul>Accessibility Widget Here
<li>A A A</li> (all anchored text)
</ul>
<ul>Widget 3 Title
<li>Sidebar 1 content here</li>
</ul>
</div> (end of class="sidebar)
In “Resize the following HTML/CSS tags”, set just the tags under content to change, like so:-
.content a, .content p, .content li, .content h2
This is only a temporary fix. I’ll do something about this in the next update.
Do let me know the outcome, thanks!