jburke wrote:I should have elaborated further. If no text and no image is added, it just shows a blank blue circle...
Hi,
The blue circle is the default ribbon styling that comes from the css of the ribbons. It was added so that customers can create ribbons which are styled without knowledge of css.
In order to remove the default blue circle you should edit the Plugins\SevenSpikes.Nop.Plugins.ProductRibbons\Themes\Smart\Content\Ribbons.css file and remove the following:
.product-ribbon {
width: 70px;
height: 70px;
border-radius: 35px;
background: #5be;
padding: 0 5px;
text-align: center;
line-height: 70px;
font-size: 0;
}
.ribbon-text {
background: none !important;
box-shadow: none !important;
padding: 0 !important;
vertical-align: middle;
line-height: normal;
font-size: 18px;
font-weight: normal !important;
color: #fff;
}
Also open the Plugins\SevenSpikes.Nop.Plugins.ProductRibbons\Styles\Ribbons.common.css file and remove the following:
.ribbon-text {
border-radius: 3px;
box-shadow: inset 0 1px 0 #ea2626, 0 1px 2px #999;
background: #c00; /*old browsers*/
background: linear-gradient(#e60000 0%,#b30000 100%);
padding: 7px 10px;
}
Thus you will be free to add your own styling or use just an image.
Hope that helps!
Please let us know if you need any further help!