Hi all,
This is a very helpful thread that helped me learn about using my Amazon astore inline frame code. I do have a question (I think with a simple answer) that I’m hoping others on this thread can help me with…
I have created a template named “shop” and got it down to the bare essentials of code. I then inserted my astore inline frame code….but I can’t seem to get the store aligned right. Can anyone offer some advice?
Here’s my page with the astore https://wedreaming.com/?page_id=36
See how it’s overlapping on the left side?
Here’s my “shop” template code
[code]
<?php
/*
Template Name: Shop
*/
?>
<?php get_header(); ?>
<iframe src="https://astore.amazon.com/wedreaming-20" width="90%" height="1000" frameborder="0" scrolling="no"></iframe>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
</div>
<?php endwhile; endif; ?>
</div>
<?php get_footer(); ?>
[code]
I have tried changing the width percent using lower percentages and also tried changing it to pixels. Still no deal.
Can someone offer any advice here? I'm using the Default WP theme, Kubrick.
Thanks for any help.