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

    (@jleuze)

    Hi, thanks for trying my plugin, glad you are finding it easy to use.

    There is a bit of bottom padding on the slideshow for when the navigation is activated, that is what is causing that space.

    You can easily fix this by using a custom stylesheet. In the Meteor Slides FAQ, there are instructions on how to use a custom stylesheet.

    Once you have that setup, you just need to edit this rule in the custom stylesheet:

    #meteor-slideshow, .meteor-slides {
    margin:0;
    overflow:hidden;
    padding:0 0 15px;
    position:relative;
    z-index:1;
    }

    Update it so the padding is zero:

    #meteor-slideshow, .meteor-slides {
    margin:0;
    overflow:hidden;
    padding:0;
    position:relative;
    z-index:1;
    }
    Thread Starter cyberangel84

    (@cyberangel84)

    Hi JLeuze. Thank you for your quickly reply.
    Your fix is working!

    Thank you! ??

    Plugin Author Josh Leuze

    (@jleuze)

    No problem, good to hear that you got it fixed!

    Hello I am having a bit of the same problem only I have placed my navigation(menu) on top of the header and the plugin seems to break my drop down

    https://www.centerthecross.org/

    I am only using meteor slides on my front page, on all other pages my drop down works fine:

    https://www.centerthecross.org/projects/project-life/

    Also how can I keep the image tags from showing up when i mouse over each slide?

    Fixed the problem. I had to lower the z index. I still would like to remove the tag from the images when I mouse over.

    Plugin Author Josh Leuze

    (@jleuze)

    WordPress automatically adds a title and alt tag to the slide images. There’s not much to be done about that, they do serve a purpose, but you could remove them with jQuery.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: Meteor Slides] Space between slide and menu’ is closed to new replies.