Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter VerzameldNieuws2016

    (@verzameldnieuws2016)

    I pressed Enter by accident, wanted to upload a screenshot, but cannot. The link is verzameldnieuws.nl/dalfsen-2 left side under

    Plugin Author Jason

    (@themeblvd)

    Hi,

    The Tweeple plugin itself doesn’t come with any kind of styling. It’s just outputting a standard unordered list, which you can style from your own CSS, or often will simply take on the styling of the current theme and look fine.

    In your case, the overflow would just have to do with your box holding the tweets (and this would be the same no matter what was in the box, whether it was tweets or some other random content).

    In general with CSS, if you have a container that you’ve given a fixed height, and you want the content to scroll, you’d use the overflow CSS property.

    https://www.w3schools.com/cssref/pr_pos_overflow.asp

    div {
    	overflow: scroll;
    	width: 500px;
    	height: 100px;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘List of tweets out op widget – no scrollbar’ is closed to new replies.