Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    It doesn’t take any PHP aside from the slideshow template tag. The rest would be HTML and CSS. Need to add a standard image before the template tag, use CSS to float the image to the left and the slideshow to the right, and last you need to clear those floats. Here’s the markup:

    <img id="header-image" src="header-image.jpg" alt="" />
    <?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?>
    <div class="clear"></div>

    And here’s an example of the CSS:

    #header-image {
    	float: left;
    }
    .meteor-slides {
    	float: right;
    }
    .clear {
    	clear: both;
    }
    Thread Starter webworld

    (@webworld)

    Thank you very much!

    Plugin Author Josh Leuze

    (@jleuze)

    No problem!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Meteor Slides] Code to have static header logo next to slideshow’ is closed to new replies.