• Resolved dennisart

    (@dennisart)


    Hi JLeuze or some other helpfull soul,

    The Meteor Slides is the most amazingly simple gallery that I have tried to date and which is also able to make internal/external links from the slides (and as my website is showing I have tried a ton of different galleries) – SO great great great! :0D

    My website (with the Meteor slider):
    http://nannagjewelry.com/wordpress/?page_id=193

    I hope that you can help me with a couple of simple questions – please!: ;0)

    1.) How do I get a border around my slideshow or rather where to put the code in the custom stylesheet!?
    Right now I have put the code: border: 2px #F00; on basically everything without any result!?

    2.) Can you aid me with a small code to Put a Watermark (.png – that I have created) in the right lower corner of my slides?

    Please help and thanks for this great great gallery…

    Hope that You can help…

    Thanks again

    Dennis

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter dennisart

    (@dennisart)

    I worked out the border issue using this: http://wordpress.org/support/topic/plugin-meteor-slides-adding-a-border-to-slideshow?replies=5

    But I still need help with the overlayer graphics/watermark!

    Any comments?

    Please help

    Hi Dennis, you would add that watermark the same way that the title is added. You probably want it outside of the loop so there is one watermark on top of all the slides that doesn’t transition. Just place the image right before the closing tag for the slideshow container:

    <img src="<?php bloginfo( 'template_directory' ); ?>/images/watermark.png" class="watermark" alt="" />
    	</div><!-- .meteor-slides -->

    And then you can position that absolutely over the slides:

    .meteor-slides .watermark {
        bottom: 5px;
        right: 5px;
        position: absolute;
    }
    Thread Starter dennisart

    (@dennisart)

    Thanks for quick reply !!!! :0D

    It almost works perfectly – BUT, the watermark is underneath of the slides instead of ontop!

    See:
    http://nannagjewelry.com/wordpress/?page_id=193

    Any ideas how to fix?

    No problem Dennis, it is because the watermark’s z-index is lower than the slides, if you bump it up it will move the watermark to a higher layer:

    .meteor-slides .watermark {
    bottom: 5px;
    right: 5px;
    position: absolute;
    z-index: 100;
    }
    Thread Starter dennisart

    (@dennisart)

    YIPEEEE!! Can I marry you!!? – Seriously thanks a million gazillion times – it works perfectly!!!!

    Thank you thank you…. :0D

    I’m sooo happy right now…

    Ha, glad to help!

    Hi JLeuze,

    I have a lot of problems to set watermark on my slide.
    I copied the css code on the meteor css file and

    <img src=”<?php bloginfo( ‘template_directory’ ); ?>/images/XXXXXX.png” class=”watermark” alt=”” />
    </div><!– .meteor-slides –>

    and all the website is block. The slide disappear and i see the pics as a “list”, and css no works!

    HELP!
    Thank you very! Great job!

    Are the watermarks also for this site? Are you adding them to the slides using a custom slideshow template?

    Hi JLeuze,
    Sorry for reply too late!
    Yes, i’m using custom template. I’ve already added the description in my slides. But same problem, when i add
    <img src=”<?php bloginfo( ‘template_directory’ ); ?>/images/XXXXXX.png” class=”watermark” alt=”” />
    </div><!– .meteor-slides –>

    everything go down:
    This is the code i have now at the end of the custom template. Is it right?

    <?php // Get the featured image’s description
    $ms_thumb_id = get_post_thumbnail_id($id);
    $ms_description = esc_attr( get_post_field( ‘post_content’, $ms_thumb_id ) );
    echo ‘<p>’ . $ms_description . ‘</p>’;
    ?>
    <img src=”<?php bloginfo( ‘template_directory’ ); ?>/images/watermark.png” class=”watermark” alt=”” />
    </div><!– .meteor-slides –>
    </div><!– .mslide –>
    <?php $i++; ?>
    <?php endwhile; ?>
    <?php wp_reset_query(); ?>
    </div><!– .meteor-slides –>

    Thank you a lot!

    That looks right, but I would have to see the watermark on the page to see why it isn’t laying out correctly.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Meteor Slides border problems and watermark’ is closed to new replies.