Click here to Skip to main content
15,902,492 members

Comments by Member 15825061 (Top 4 by date)

Member 15825061 16-Dec-22 12:20pm View    
Missed the top part...

public class Mastermind
{
[Key]
public int MastermindId { get; set; }

[DisplayName("Title")]
public string? MMTitle { get; set; }

[DisplayName("Description")]
public string? MMDescription { get; set; }

[DisplayName("Link")]
public string? MMLink { get; set; }

public DateTime MMPublishDate { get; set; } = DateTime.Now;
}
Member 15825061 16-Dec-22 0:36am View    
Updated with more detail, thank you.
Member 15825061 25-Nov-22 13:01pm View    
Works perfect, thanks!
Member 15825061 9-Nov-22 15:14pm View    
Works perfectly, thank you. I did however have to drop the second piece of CSS to get the side by side boxes, but the rest did the trick. With the following code it was still creating a single column for the results, though the layout was fixed int he process.


.navBoxGrid > .navBox {
flex: 1 1 50%;
}