Hi Team,
I would like to know if we can freeze the Tour Template Headings Tab to the screen or make it visible on opening the tour details page.
If we could make the tab visible before scrolling the page.
Regards,
Hi Team,
I would like to know if we can freeze the Tour Template Headings Tab to the screen or make it visible on opening the tour details page.
If we could make the tab visible before scrolling the page.
Regards,
Hello Vyom,
I am afraid this is not available at the moment, however, I will look into adding this option in future theme update.
In the meantime, you can try adding the following CSS in your child theme or customizer custom css, however this is not tested and you may need to customize it further.
@media only screen and (min-width: 992px) {
.trip-info > .row {
margin: 0;
width: 100%;
table-layout: fixed;
display: block;
min-height: 0;
}
}
Ty