You are not logged in.
Just to tidy things up a bit...
It would be nice to have an option of applying the < NOBR > </ NOBR > html codes around links, especially since many of the links in the program are displayed between < LI > </ LI > codes causing them to word-wrap spaces in the links, like those on the Manage Appointments display page as well as the Session links on the Services display page, and other navigation links, when the links extend beyond the width of the page, on a full width template. In other words, it looks better for the whole link to be moved to the next line rather than only part of it word-wrapped.
Thanks
Dave
Offline
That works. I am using "LI" rather that "A" tags so as to include both the active display option as well as the other links.
#ha #controlPane LI {
WHITE-SPACE: nowrap;
}
Thanks again.
Dave
Offline
There is a small problem applying this fix to the list of services page. In this case I am using the "A" tag in the CSS. However, it would appear that the program needs to place a space between each link in order for the links to wrap, otherwise they all stay together as one solid unit using this fix.
#ha .buttonBar A {
WHITE-SPACE: nowrap;
}
Dave
Offline