Maybe experiment with CSS clamp(min, preferred, max) for much less code and easier maintenance.
Only as an example:
Code: Select all
.navbar-brand img {
width: clamp(6rem, calc(10rem + 6vw), 25rem);
height: auto;
margin-top: 0;
}Maybe experiment with CSS clamp(min, preferred, max) for much less code and easier maintenance.
Code: Select all
.navbar-brand img {
width: clamp(6rem, calc(10rem + 6vw), 25rem);
height: auto;
margin-top: 0;
}That's a new one on me. Always happy to learn.heatherbell wrote: ↑Fri Jul 04, 2025 5:28 amMaybe experiment with CSS clamp(min, preferred, max) for much less code and easier maintenance.
Only as an example:
I did check it out, because at this point my shop really won't need a search bar.heatherbell wrote: ↑Tue Jul 01, 2025 7:03 amSo, try this in your user.css:Anyway, seems to work on this demo https://psiwebsites.com/1103/ but have a test.Code: Select all
.offcanvas-body ul.navbar-nav:last-of-type { margin-left: auto !important; }
Without the Maufacturers it will, so add the target for the cm-navbar parent like:
Code: Select all
.cm-navbar .offcanvas-body ul.navbar-nav:last-of-type {
margin-left: auto !important;
}Bingo!heatherbell wrote: ↑Sat Jul 05, 2025 4:46 amWithout the Maufacturers it will, so add the target for the cm-navbar parent like:Code: Select all
.cm-navbar .offcanvas-body ul.navbar-nav:last-of-type {margin-left: auto !important;}