I bought the Huex theme a while back and I'm trying to add a 728x90 banner on the single post pages instead of the default 468x60 above the header.
For example take a look at Ryans blog: http://blog.ryanmaffit.com/web-development/php/dynamic-php-font-generator.html
Using Firebug I found that ryan created a custom div class called Advert-728, I tried to copy the coding into my single.php file but I always get it wrong. If anyone is familiar with Firebug I would very much appreciate intructions on how to copy the Advert-728 div class into my single.php file
This is what the header of my single.php file looks like:
<?php get_header(); ?>
<!-- Left // -->
<div class="left">
<?php if(get_wpn_config('ad_468')) : ?>
<div class="advert-468">
<?php echo stripslashes(get_wpn_config('ad_468')); ?>
</div>
<?php endif; ?>
Thanks