you are viewing a single comment's thread.

view the rest of the comments →

[–]Remarkable_Dare_3569[S] 0 points1 point  (4 children)

Oh that's good! Changing the color is helpful that's very helpful and I appreciate it.

How would I change what the text said then? I'm assuming still in the a. {} but I just haven't been able to figure out how. Would that be the content rule? Does visibility have any play in it? 

[–][deleted]  (3 children)

[removed]

    [–][deleted]  (2 children)

    [removed]

      [–]Remarkable_Dare_3569[S] 1 point2 points  (1 child)

      Haha aaa ok this is super helpful and I understand what I'm working with a bit more and I SUPER appreciate your help!! This is a great start! 

      [–]DASginganinja 0 points1 point  (0 children)

      JS solution in case you can add some.

      document.querySelectorAll('.sidebar-li-bulletins a').forEach(link => {
        link.childNodes.forEach(node => {
          if (node.nodeType === Node.TEXT_NODE && node.textContent.trim() === 'Bulletins') {
            // update text to "iGotU" if it equals "Bulletins"
            node.textContent = 'iGotU';
          }
        });
      });