- Moderator
- 1044
New bug: not sure if I should post this here or on the product ribbons forum, but here it is.
It also doesn't appear to use the "text" box correctly. It just displays a small red box.
It also doesn't appear to use the "text" box correctly. It just displays a small red box.
Hi Thomas,
Thank you for your feedback!
It was actually a bug that we have fixed. In order to integrate the fix you can edit your Plugins\SevenSpikes.Nop.Plugins.ProductRibbons\Styles\Ribbons.common.css file as shown below:
.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;
font-size: 12px;
}
The line in bold is the one that should be added.
Thus by default the ribbon text will be 12px. If you want to change this you can do this per ribbon from the administration of the plugin. There is a textbox called "Ribbon text style:" where you can enter styles for the text on the ribbon.
You can also change the styles for the ribbon itself by entering your style in the "Ribbon style:" textbox.
Hope that helps!