No. It doesn't display in the default highlighted region but default Drupal messages like "content has been saved" displays in highlighted region.
I investigated further and realised that moving the status messages block to header top region causes the messages to display but it's a weird location to display messages. That's how am using it temporarily.
ricmayak1 → created an issue.
ricmayak1 → created an issue.
ricmayak1 → created an issue.
I'm having this same issue when trying to add commerce product variation with field validation module and Drupal 11.
The code below was added to make every views table to be mobile responsive. I suggest that it should be added to the theme's css.
/* Make the table container scrollable */
.views-table {
display: block;
overflow-x: auto;
white-space: nowrap;
}
/* Ensure table content wraps properly */
.views-table td,
.views-table th {
word-wrap: break-word;
white-space: normal;
}
/* Add responsiveness for smaller screens */
@media (max-width: 768px) {
.views-table th, .views-table td {
padding: 8px;
font-size: 14px;
}
.views-table {
width: 100%;
}
}
Thanks developer. It works fine now.
ricmayak1 → created an issue.
ricmayak1 → created an issue.
Same experience with me. This is on a fresh Drupal 10 installation.