Given background color to title bar ditty news

Here is the updated code with a background color for the title bar:

.ditty-news {
  background-color: #f2f2f2; /* Add this line to set the background color */
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.ditty-news h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
}

.ditty-news p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.ditty-news.read-more {
  font-size: 14px;
  color: #337ab7;
  text-decoration: none;
}

.ditty-news.read-more:hover {
  color: #23527c;
}

You can adjust the background color to your liking by changing the hex code #f2f2f2.