• I have a plugin code for a featured post slider that I would like to place in the header of my blog. When I paste the code in my header template, the plugin appears on the far left side of the page. I would like to position it in the center of the page. I’m sure there is a simple code for this but my lack of knowledge is preventing me from figuring it out. I am currently using the Coaster theme and the plugin is called Featured Content Gallery. Here is the plugin code that I am using:

    <?php include (ABSPATH . ‘/wp-content/plugins/featured-content-gallery/gallery.php’); ?>

    Any advice would be great!
    Thanks,
    Brittany
    http://www.shopcents.net (for reference if you need it)

Viewing 1 replies (of 1 total)
  • Currently you have it like:

    <div id="banner">...</div>
    <div id="col-left">
    	<div id="featured">...</div>
    </div>

    Make it so it’s like:

    <div id="banner">...</div>
    <div id="featured">...</div>
    <div id="col-left">...</div>

Viewing 1 replies (of 1 total)
  • The topic ‘Requesting Some Help with Simple Coding’ is closed to new replies.