On the page Calendar/Index, must be logged in as an admin to see this page, there is CSS being applied that is not being place inside the <head> tag in HTML. The custom CSS on this page needs to be placed in the <head>
The Layout page, already has a section @await RenderSectionAsync("Head", false) to place CSS code in the head. To use this on the Calendar page, we access the section by coding
@section Head {
<style>
/* CSS code goes here */
</style>
}
On the page
Calendar/Index
, must be logged in as an admin to see this page, there is CSS being applied that is not being place inside the<head>
tag in HTML. The custom CSS on this page needs to be placed in the<head>
The Layout page, already has a section
@await RenderSectionAsync("Head", false)
to place CSS code in thehead
. To use this on the Calendar page, we access the section by coding