diff --git a/themes/fid_adlr/templates/header.phtml b/themes/fid_adlr/templates/header.phtml
index 69991ac9c2fdb9f033079aefae29104eb6908666..f6b0f0b652df4e2394ca673773e7c44984426393 100644
--- a/themes/fid_adlr/templates/header.phtml
+++ b/themes/fid_adlr/templates/header.phtml
@@ -30,36 +30,37 @@
           <?php endif; ?>
         </span>
         
-        <?php /*
-        <ul>
-        <?php $cart = $this->cart();
-        if ($cart->isActive()): ?>
-          <li id="cartSummary">
-            <a id="cartItems" data-lightbox title="<?=$this->transEsc('View Book Bag')?>" href="<?=$this->url('cart-home')?>">
-              <i class="icon icon-calendar" aria-hidden="true"></i> <strong><?=count($cart->getItems())?></strong> <?=$this->transEsc('items')?>
-              <span class="full<?=!$cart->isFull() ? ' hidden' : ''?>">(<?=$this->transEsc('bookbag_full')?>)</span>
-            </a>
-          </li>
-        <?php endif; ?>
+        <?php /* adlr currently doesn't use cart/bookbag, but accessibility of the following was already improved */
+              /*
+     <?php $cart = $this->cart();
+      if ($cart->isActive()): ?>
+        <div id="cartSummary" role="status">
+          <a id="cartItems" class="bookmark" data-lightbox title="<?=$this->transEsc('View Book Bag')?>" href="<?=$this->url('cart-home')?>">
+            <i class="icon icon-calendar" aria-hidden="true"></i>
+            <span class="sr-only"><?=$this->transEsc('Book Bag')?>:</span>
+            <strong class="cart-size"><?= count($cart->getItems()) ?></strong>
+            <span class="cart-label"><?=$this->transEsc('items')?></span>
+            <span class="cart-size full<?= !$cart->isFull() ? ' hidden' : '' ?>">(<?= $this->transEsc('bookbag_full') ?>)</span>
+          </a>
+        </div>
+      <?php endif; ?>
 
-        <?php if (isset($this->layout()->themeOptions) && count($this->layout()->themeOptions) > 1): ?>
-          <li class="theme dropdown">
-            <form method="post" name="themeForm" id="themeForm">
-              <input type="hidden" name="ui"/>
-            </form>
-            <a href="#" class="dropdown-toggle" data-toggle="dropdown"><?=$this->transEsc("Theme")?> <b class="icon icon-chevron-down"></b></a>
-            <ul class="dropdown-menu">
-              <?php foreach ($this->layout()->themeOptions as $current): ?>
-                <li<?=$current['selected'] ? ' class="active"' : ''?>>
-                  <a href="#" onClick="document.themeForm.ui.value='<?=$this->escapeHtmlAttr($current['name'])?>';document.themeForm.submit()"><?=$this->transEsc($current['desc'])?></a>
-                </li>
-              <?php endforeach; ?>
-            </ul>
-          </li>
-        <?php endif;?>
-        </ul>
-    */ ?>
-    
+      <?php if (isset($this->layout()->themeOptions) && count($this->layout()->themeOptions) > 1): ?>
+        <div class="theme dropdown">
+          <form method="post" name="themeForm" id="themeForm">
+            <input type="hidden" name="ui"/>
+          </form>
+          <a href="#" class="dropdown-toggle" data-toggle="dropdown"><?=$this->transEsc("Theme")?> <b class="icon icon-chevron-down"></b></a>
+          <ul class="dropdown-menu">
+            <?php foreach ($this->layout()->themeOptions as $current): ?>
+              <li<?=$current['selected'] ? ' class="active"' : ''?>>
+                <a href="#" onClick="document.themeForm.ui.value='<?=$this->escapeHtmlAttr($current['name'])?>';document.themeForm.submit()"><?=$this->transEsc($current['desc'])?></a>
+              </li>
+            <?php endforeach; ?>
+          </ul>
+        </div>
+      <?php endif;?>
+      */ ?>
       </div>
     <?php endif; ?>
     <?php /* fid_adlr: header-menu-collapse for feedback (disabled?) / registering / card (disabled) - END */ ?>