• Resolved JudgeFredd

    (@judgefredd)


    When i enable the “previou/next” navigation settings, i get two small rectangles on the top center of my slide, these can be used to navigate, are these intentional, and is it possible to remove them , while retaining the previous/next navigator?
    I have uploadet a pic to describe the boxes here:
    Pic
    right now the slide is running on the frontpage of my site here but since i’m editing the slide and the site, it may not show the same thing as the image i uploadet.. ?? The reason i would like to remove the small navigational boxes, is that i don’t like the way my page “jumps” when you hover on the slide.

    https://www.ads-software.com/extend/plugins/meteor-slides/

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

    (@jleuze)

    There’s a conflict with your theme that is adding extra content to the list items for the nav:

    .art-postcontent ul > li::before, .art-post ul > li::before, .art-textblock ul > li::before {
    content: url('images/postbullets.png');
    margin-right: 10px;
    bottom: 2px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
    }

    Try adding this to your theme’s stylesheet:

    ul.meteor-nav li {
    content: none;
    }

    One other thing, you have code tags wrapped around your slideshow. Edit the page, switch from the visual view to the HTML view, and remove any <code> or <pre> tags around the shortcode.

    Thread Starter JudgeFredd

    (@judgefredd)

    Thanks a MILLION!! ??
    I Tried removing the wrapped code tags from the page, and inserting
    ul.meteor-nav li {
    content: none;
    }
    into my themes stylesheet (style.css) but i didn’t seem to do much, it looked like the tiny boxes changed their shape a little.

    I then took the bold (and ignorant) move, and simply erased the code you mentioned.
    And now it works flawlessly.
    I know that it bad style just to randomly erase something from at style sheet, but i’m not using much other than the basic layout of the header and background from the style sheet, i’m not using any of the included graphics such as buttons and bullets. Wich i asume are located in the side boxes.
    I have used something called Artisteer to create the theme.

    Plugin Author Josh Leuze

    (@jleuze)

    You’re welcome, you can always restyle your lists later if you need to.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Meteor Slides] Stipled rectangles on top of slideshow with "previous/next" enable’ is closed to new replies.