This commit is contained in:
Michael 2017-03-25 10:33:42 -04:00
parent 90d062973b
commit 6e4b5e6de7

View file

@ -46,16 +46,16 @@ namespace Project_Unite
{ {
builder.AppendLine("<li><a href=\"" + notesOrdered[i].ActionUrl + "\">"); builder.AppendLine("<li><a href=\"" + notesOrdered[i].ActionUrl + "\">");
//Avatar holder start: //Avatar holder start:
builder.AppendLine("<div style=\"width:128px;height:128px;display:inline-block;\">"); builder.AppendLine("<div style=\"width:64px;height:64px;display:inline-block;\">");
//Avatar //Avatar
builder.AppendLine("<img src=\"" + notesOrdered[i].AvatarUrl + "\" width=\"128\" height=\"128\"/>"); builder.AppendLine("<img src=\"" + notesOrdered[i].AvatarUrl + "\" width=\"64\" height=\"64\"/>");
//Avatar holder end: //Avatar holder end:
builder.AppendLine("</div>"); builder.AppendLine("</div>");
//Notification title. //Notification title.
builder.AppendLine("<strong>" + notesOrdered[i].Title + "</strong><br/>"); builder.AppendLine("<p><strong>" + notesOrdered[i].Title + "</strong><br/><br/>");
//Contents. //Contents.
builder.AppendLine("<p>" + notesOrdered[i].Description + "</p>"); builder.AppendLine(notesOrdered[i].Description + "</p>");
builder.AppendLine("</a></li>"); builder.AppendLine("</a></li>");
} }