Our June preFIX release includes a software upgrade to AspDotNetStorefront version 10.0.4. Within this version there are some skin changes that are built in to the Default skin, but are not automatically merged in to customized skins. If you'd like to enable these updates for your store, you'll need to apply some edits to your custom skin.


Accessibility Improvements

In version 10.0.4, we've begun taking steps to improve the accessibility of AspDotNetStorefront. We've added a 'lang' attribute to the root <html> element in _Layout.cshtml within the default skin. You can do the same by modifying your skin's Views/Shared/_Layout.cshtml file and adding the lang attribute as follows:

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">


Checkout Interface improvement

In version 10.0.4, we've improved the styling in checkout to help customers through the flow. You can apply this change by adding the following class to your skin's Css/styles.css file:
.highlight-save-email-button {
  transition: all ease 0.8s;
  box-shadow: 0 0 5px #398439;
}