acooper
Hi
Open file "/tpls/blocks/mainnav.php" in template "ja_autoshop".
Find this code
<div class="t3-navbar-category <?php $this->_c('navbar-category') ?> <?php if (!$this->countModules('slideshow')) echo "category-dropdown"; ?>">
<jdoc:include type="modules" name="<?php $this->_p('navbar-category') ?>" style="T3xhtml" />
</div>
Replace it with
<div class="t3-navbar-category <?php $this->_c('navbar-category') ?> <?php echo "category-dropdown"; ?>">
<jdoc:include type="modules" name="<?php $this->_p('navbar-category') ?>" style="T3xhtml" />
</div>
save and check.
I removed condition if (!$this->countModules('slideshow')) from the code to apply the same style for Homepage which use slideshow.
Regards