Can you please provide link to website so I can check style?
Btw, there is no bullet separators in stock ticker between quotes, that must be something from your theme and widget UL styling. I can help with CSS tip, but as said above, need link to website.
Really? I didn’t know that.. here is the link, I have both running right now, in the middle is the Short Code Version, and at the bottom is the Widget Version. I did the Widget version first, so I have to admit I thought that was what it was meant to look like.
http://www.apiwellenergy.com
Well, no, as you can see on 3rd screenshot https://ww.wp.xz.cn/plugins/stock-ticker/screenshots/ there are not bullets in ticker 🙂
So, if you add this to your style file, you’ll get in footer widget how ticker should look like 🙂
#footer-widgets .footer-widget .stock_ticker li {
padding-left: 0;
}
#footer-widgets .footer-widget .stock_ticker li:before {
display: none;
}
And I suggest to you use that style. If you wish bullet separator, instead of that, use:
.stock_ticker.newsticker li {
position: relative;
padding-left: 14px;
}
.stock_ticker li:before {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border-style: solid;
border-width: 3px;
content: "";
left: 0;
position: absolute;
top: 9px;
border-color: #ed7c31;
}
Cheers
Thank you.. I’ll test that out. Much appreciate your help.
If you can take couple minutes, please review plugin here https://ww.wp.xz.cn/support/view/plugin-reviews/stock-ticker
Thank you