How to make tagdiv composer block news content be scrolling

To make the TagDiv Composer block news content scrolling, you'll need to add some custom CSS code to your WordPress website. Here's a step-by-step guide to help you achieve this:

Method 1: Using the overflow property

  1. Log in to your WordPress dashboard and go to the TagDiv Composer block editor.
  2. Select the news block you want to make scrolling.
  3. In the block settings, click on the "Advanced" tab.
  4. In the "Custom CSS" field, add the following code:
    .tagdiv-news-block {
    overflow-y: auto;
    }

    This will add a vertical scrollbar to the news block.

Method 2: Using the scroll property

  1. Log in to your WordPress dashboard and go to the TagDiv Composer block editor.
  2. Select the news block you want to make scrolling.
  3. In the block settings, click on the "Advanced" tab.
  4. In the "Custom CSS" field, add the following code:
    .tagdiv-news-block {
    scroll-behavior: smooth;
    overflow-y: auto;
    }

    This will make the news block scroll smoothly when you click on the news items.

Method 3: Using a CSS class

  1. Log in to your WordPress dashboard and go to the TagDiv Composer block editor.
  2. Select the news block you want to make scrolling.
  3. In the block settings, click on the "Advanced" tab.
  4. In the "Custom CSS" field, add the following code:
    .tagdiv-news-block.scrolling {
    overflow-y: auto;
    }

    Then, in the block settings, add a CSS class to the news block by clicking on the "Add CSS class" button and entering scrolling.

Additional tips