Just downloaded this plugin and having the same issue. Clicking buttons such as “Attach” in the attached fields area does nothing.
Thread Starter
Sinule
(@sinule)
Cheers for the tip! I use firebug all the time but I hadn’t thought to look for the name of the main div using it, all sorted now 🙂
In case anyone is interested in how to effectively add a column to the layout in naturefox:
Go to Appearance > Editor > Page Template(page.php)
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h1 class="content-title"><?php the_title(); ?></h1>
<div class="alignright">Content for the column here</div>
<?php the_content(); ?>
The div class alignright line is where I have added a div using a class that’s already in the stylesheet. In my case I created a new class with the width property so that the div wasn’t relying on the content for width.