/* Example for the class 'columnwrapper col-lg-12 pt-4 pb-4' */
.columnwrapper.col-lg-12.pt-4.pb-4 {
position: fixed;
top: 0;
width: 100%;
background-color: white; /* Adjust as needed */
z-index: 1000; /* Adjust as needed */
/* Add any other styles you want to maintain */
}
/* Example for the ID 'indymall_column_...' */
#indymall_column_67ee252e9c9e8_67ee8c57670e1 {
position: fixed;
top: 0;
width: 100%;
background-color: white; /* Adjust as needed */
z-index: 1000; /* Adjust as needed */
/* Add any other styles you want to maintain */
}
/* -------------------------------------------------------------------------- */
/* Sticky Header CSS */
/* -------------------------------------------------------------------------- */
/* 1. Identify the correct CSS selector for your header element. */
/* You can do this by using your browser's developer tools (right-click */
/* on the header and select "Inspect" or "Inspect Element"). Look for */
/* a unique class or ID that identifies your header. */
/* */
/* 2. Replace '.your-header-class' below with the actual class of your header.*/
/* Or, if your header has an ID, replace '.your-header-class' with '#your-header-id'. */
/* */
/* 3. You might need to adjust the background-color and z-index values. */
/* -------------------------------------------------------------------------- */
.row-level-1 container-fluid p-0 { /* Replace with your header's class or ID */
position: fixed;
top: 0;
left: 0; /* Ensure it spans the full width from the left */
width: 100%;
background-color: white; /* Change this to your header's background color */
z-index: 1000; /* Make sure it stays on top of other elements */
/* Add any other styles you want your sticky header to have */
}
/* -------------------------------------------------------------------------- */
/* Optional: Add padding to the top of the body to prevent overlap */
/* -------------------------------------------------------------------------- */
/* You might need to adjust the '60px' value below to match the height of your header. */
body {
padding-top: 60px; /* Adjust this value as needed */
}