• Resolved vincent1211

    (@vincent1211)


    hy there, i want to custom ditty news sticker in css
    using css postion fixed, how to do it ?
    i try and i failed

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author metaphorcreations

    (@metaphorcreations)

    The ticker needs something to base it’s width off of, so if you set the position to fixed there is no width.

    Try using the following css:

    .mtphr-dnt {
      position: fixed;
      width: 100%;
      left: 0;
      top: 33px;
      z-index: 9999;
      box-sizing: border-box;
    } 
    
    Thread Starter vincent1211

    (@vincent1211)

    Tq, I worked

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

The topic ‘put fixed position’ is closed to new replies.