Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    Yeah. I want to do the same thing.

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