I've been trying to use the header element to resolve the issue, but the header element doesn't seem to work the way I want. So, I removed the header from the page and added a grid element at the top. I have a grid element with 1 column and 2 rows. In the first row I added another grid with 2 columns and 1 row. That's where the two buttons (List of Terms and Feedback) are located. Below the buttons is the actual term name (ex: "ANOVA"). I want the grid with the two rows to remain fixed on the page and not scroll with the content.
I've created a css element called "formatHeader" with the following code and added it to the grid element "headerGrid":
.headerGrid
{
position: fixed;
}
This doesn't seem to work. How do I prevent "headerGrid" from moving with the content?