• Resolved cele4

    (@cele4)


    Hi there
    I want to highlight an entire line. A line where the total of the top is displayed. How should I do that?

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor contactashish13

    (@rozroz)

    @cele4 I see that you have already done it for the National (Leagues) chart. Can you please mention which graph you want this on?

    Thread Starter cele4

    (@cele4)

    Hi

    Marking with the line is done.
    https://www.handball-hall-of-fame.ch/player/boesch-tamara-handball-hall-of-fame/
    National League, line in “blue”.
    <script type = “text / javascript”>
    window.addEventListener (‘load’, function () {
    ???? console.log (‘DOM fully loaded and parsed’);
    ??? const tds = document.querySelectorAll (‘body.player-template-default.single.single-player table.dataTable.visualizer-data-table tbody> tr> td’);
    ???? for (var i = 0; i <tds.length; i ++) {
    ???????? if (tds [i] .innerText === ‘W’) tds [i] .parentElement.style.backgroundColor = ‘# 9ed7b6’;
    ???????? else if (tds [i] .innerText === ‘L’) tds [i] .parentElement.style.backgroundColor = ‘# f4a6a6’;
    ???????? else if (tds [i] .innerText === ‘D’) tds [i] .parentElement.style.backgroundColor = ‘# f4dda6’;
    ???????? else if (tds [i] .innerText === ‘Total’) tds [i] .parentElement.style.backgroundColor = ‘# a6d4f4’;
    ???? }
    });
    </ Script>

    I just want the line “Total” to appear in bold in the code.

    Plugin Contributor contactashish13

    (@rozroz)

    @cele4 the line is already in bold. Please paste a screenshot so that we can see what you see.

    Thread Starter cele4

    (@cele4)

    Hi there

    Thank you for your concern. I was able to solve it after many hours yesterday. I wanted to write to you, but fell asleep in front of the PC ??

    Plugin Contributor contactashish13

    (@rozroz)

    @cele4 glad to hear that you solved it!

    If you are satisfied with our product and support, kindly spare a moment to leave us a review. It would really help us spread the word!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Highlight line’ is closed to new replies.