• I’ve added a Stock Ticker to run full width in the Footer Bar using the widget, and it works great, but my client wants to move the bar up on the page.
    I created a text field, and added the Short Code version and it is working, but the Bullet Separators don’t show up. Is there a way to add the bullets between each stock as the Widget version displays?

    https://ww.wp.xz.cn/plugins/stock-ticker/

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

    Thread Starter NeillOrr

    (@neillorr)

    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

    Thread Starter NeillOrr

    (@neillorr)

    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

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

The topic ‘Adding Bullets to Short Code Version’ is closed to new replies.