summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-03-25 10:33:42 -0400
committerMichael <[email protected]>2017-03-25 10:33:42 -0400
commit6e4b5e6de7cc84b6d263f83e6b8327535d5288fc (patch)
tree5c3c100fdf05e5309a6a448f54913cb91d2cd424
parent90d062973ba1331aaf68d16846e62784fc325822 (diff)
downloadproject-unite-6e4b5e6de7cc84b6d263f83e6b8327535d5288fc.tar.gz
project-unite-6e4b5e6de7cc84b6d263f83e6b8327535d5288fc.tar.bz2
project-unite-6e4b5e6de7cc84b6d263f83e6b8327535d5288fc.zip
kittyfry
-rw-r--r--Project-Unite/ACL.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Project-Unite/ACL.cs b/Project-Unite/ACL.cs
index 8ed4488..85c881c 100644
--- a/Project-Unite/ACL.cs
+++ b/Project-Unite/ACL.cs
@@ -46,16 +46,16 @@ namespace Project_Unite
{
builder.AppendLine("<li><a href=\"" + notesOrdered[i].ActionUrl + "\">");
//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
- 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:
builder.AppendLine("</div>");
//Notification title.
- builder.AppendLine("<strong>" + notesOrdered[i].Title + "</strong><br/>");
+ builder.AppendLine("<p><strong>" + notesOrdered[i].Title + "</strong><br/><br/>");
//Contents.
- builder.AppendLine("<p>" + notesOrdered[i].Description + "</p>");
+ builder.AppendLine(notesOrdered[i].Description + "</p>");
builder.AppendLine("</a></li>");
}