A little update. I have tried using Firebug to help me a bit on placement but I think my main problem is I am not able to move the image in the CSS…at all. I can move it within Firebug, but when I reference offer in CSS it is not making the adjustments.
Here is where I am stuck:
<?php get_header(); ?>
<div id="wrapper"<?php if (is_front_page()): ?> class="home"<?php endif; ?>>
<?php slideshow_loop(1, 'home_slideshow.php'); ?>
<div id="hp-content">
<strong><div id="offer">
<img src = "https://www.spectaclip.com/wp-content/uploads/2013/09/Buy-2-Get-1-Free.png" />
</div></strong>
<div class="inner">
<div id="video">
<p class="video-title"><?php echo get_post_meta($post->ID, 'video title', true); ?></p>
<?php
if (have_posts()): while (have_posts()): the_post();
$content = get_post_meta($post->ID, 'video shortcode', true);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
_e($content);
endwhile; endif; wp_reset_query();
?>
<a href="<?php bloginfo('url'); ?>/shop/spectaclip/"><p class="buy-now"><?php echo get_post_meta($post->ID, 'buy button text', true); ?></p></a>
<p class="hp-para"><?php echo get_post_meta($post->ID, 'paragraph', true); ?></p>
</div>
</div>
<?php slideshow_loop(1, 'home_slideshow.php'); ?>
<div class="cf"></div>
</div>
</div>
<?php get_footer(); ?>
#offer {
float: right;
}
Obviously not exactly what I want for CSS but thought I’d give you a reference to how I am calling it.
I also checked to make sure that header.php was pointing back to the style sheet. It is a bit weird though how when I pull it in Firebug there seems to be literally no CSS for the entire homepage.
Someone else built this thing and I jumped in half way, but now I”m all the way so looking for some help!
Thank you for your time in advance! : )
Adam