Divi header news scrolling

You're looking to create a scrolling news header using Divi!

Here's a step-by-step guide to help you achieve this:

Step 1: Create a new section

Step 2: Add a row

Step 3: Add a column

Step 4: Add a text module

Step 5: Add a scrolling effect

@keyframes scroll { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }

This code will create a scrolling effect that moves the text module up and down.

**Step 6: Add a loop**

* To make the scrolling effect loop continuously, you'll need to add a JavaScript loop to the text module.
* In the Divi Builder, click on the three dots next to the text module and select "Advanced" > "Custom JavaScript".
* Add the following JavaScript code:
```javascript
$(document).ready(function() {
  var textModule = $('.text-module');
  var textContent = textModule.html();
  var textArray = textContent.split('\n');
  var textIndex = 0;

  function scrollText() {
    textModule.html(textArray[textIndex]);
    textIndex = (textIndex + 1) % textArray.length;
  }

  setInterval(scrollText, 10000); // update every 10 seconds
});

This code will loop through the text array and update the text module every 10 seconds.

Step 7: Style the scrolling effect

That's it! With these steps, you should now have a scrolling news header using Divi.

Remember to customize the code to fit your specific needs and design requirements. Happy building!