• Resolved mgraff1

    (@mgraff1)


    I am having difficulty getting one of my “Ticks” to show the entire message that I have created. I can’t seem to make any width adjustment that makes any difference and so I don’t know where to find the fix. I have 2 shorter “ticks” that follow the first one and they are shorter in length and they both show just fine. Any suggestion on the settings would be good as well as I might not be using the right settings to adjust.

    The page I need help with: [log in to see the link]

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

    (@metaphorcreations)

    Your theme contains css that is causing this issue It is forcing a set width of the ticks and applying the ellipses:

    .mtphr-dnt-tick-contents .mtphr-dnt-tick {
        padding: 14px 0;
        width: calc(100% / 3);
    }
    .mtphr-dnt-tick-contents .mtphr-dnt-tick p {
        margin: 0;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden !important;
        padding: 0 25px;
    }

    Try adding the following custom css to your News Tickers > Settings page to override this:

    .mtphr-dnt-tick-contents .mtphr-dnt-tick {
        width: auto !important;
    }
    .mtphr-dnt-tick-contents .mtphr-dnt-tick p {
        width: auto !important;
        text-overflow: inherit !important;
        overflow: visible !important;
    }
    Thread Starter mgraff1

    (@mgraff1)

    Nice! That did the trick. Thank you! I don’t know what you did, but I guess that css training you had paid off. I need to understand that better. Thank you again.

    Plugin Author metaphorcreations

    (@metaphorcreations)

    Good to hear and glad to help. Have a great day!

    I added 3 “Ticker Text” but after putting the shortcode on page it display only 2 first Ticker Text.

    Help me out for this issue. how i can display my third ticker text

    Plugin Author metaphorcreations

    (@metaphorcreations)

    @parascadd please create a new ticket with this question and provide a url so I can take a look at your ticker.

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘News Tick text show only half the message.’ is closed to new replies.