Karan_Saxena
Karan_Saxena

Reputation: 87

Is there a wordpress plugin for "news and activities" on personal website. See details

I am trying to have a 'news and activities' box (as shown here) for my personal website. Can you point me to some plugin for the same. Thanks.

Upvotes: -1

Views: 45

Answers (1)

Tasos Fel
Tasos Fel

Reputation: 331

OK i wouldnt use a plugin for this .

just do this write to text editor

HTML

<div class="scroll-box">

<p>Your excerpt goes in here!</p>

</div>

and in your css

.scroll-box {
    background: #f4f4f4;
    border: 2px solid rgba(0, 0, 0, 0.1);
    height: 400px; /* maximum height of the box, feel free to change this! */
    padding: 15px;
    overflow-y: scroll;
}

If you want you can make your own shortcode so you dont have to wrap your text in html <div class="scroll-box>

Upvotes: 0

Related Questions