• Resolved marthagail

    (@marthagail)


    First question: I’ve seen people asking how to change the numbers to dots on the navigation, but I haven’t seen an answer to that. I can style the navigation, but I can’t figure out how to make the numbers dots instead.

    Second: Is there a way to make the panels unclickable? I do not want my users to click the panel and be taken to the image.

    This is a great plugin! Thanks!

    http://wordpress.org/extend/plugins/promotion-slider/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Micah Wood

    (@woodent)

    @marthagail,

    On your second point, the answer is yes. On the promotion editing screen there is an option to disable the link.

    Regarding your first question, that is currently not an easy thing to do. I am restructuring the plugin and this type of thing will be much easier in future releases. As it stands right now, if you can’t figure it out, it would be better to just wait until my next release.

    graphicd00d

    (@graphicd00d)

    @marthagail,

    To change the numbers to dots you have to do some CSS trickery. I made images for the dots and made them background images and just made the numbers the same color of the image. So I didn’t change the text, just made them blend in with the image. Below is my CSS…

    #homepagead .slider_selections span {background-image: url(/wp-content/themes/mfc/images/bannernav.png);
        color: #fff;
        height: 15px;
        padding: 0 4px;
        text-indent: 10px;
        width: 22px;
        margin-right:4px;
    }
    #homepagead .slider_selections span.current {background-image: url(/wp-content/themes/mfc/images/bannernavcurrent.png);
        color: #9BAD6F;
        height: 15px;
        padding: 0 4px;
        text-indent: 10px;
        width: 22px;
    }

    This is what it looks like… Test site

    Just change my id and image names and change the css to fit what you need.

    BTW… The CSS I have above is located in my theme’s style.css file.

    Thread Starter marthagail

    (@marthagail)

    Thanks, pal!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: Promotion Slider] Custom Navigation and Clickable Posts’ is closed to new replies.