Viewing 1 replies (of 1 total)
  • This is the official demo of that Wootique theme:
    http://demo2.woothemes.com/?name=wootique

    So, where and what kind of a banner you are displaying?

    As seen in the demo, there is only “2” banner/flags on product images in the homepage, and one is just for a “free” product and the other is for a discounted product to make them differ from others.

    So, if there is a live link for your site, it will be more useful to see what is your situation!

    Btw, in the Wootique Theme, the styling for “Price Tag” is designe d as to show on the upper right of an image within a flag/banner. That is the design
    choice for the styling of the theme.

    The output for the price display is as:

    <span class="price"><span class="amount">$14.99</span></span>

    if you look at the css styles of that area:

    ul.products li .price {
    position: absolute;
    top: 10px;
    right: -6px;
    }

    As you can see, that “ABSOLUTE” value for the position makes that price on top of that area.
    If you change that value to “RELATIVE” in your custom.css, it will display under/below the image.
    If you add a new property as
    `
    display: none;
    }

    it will not show any price at all.

    (Note: that is just to hide the price, it is still there in the page, but not visible, just hiding)

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove price banner in wootique’ is closed to new replies.