[8.9.4.2012] Home Page - Service Category Nav CSS Modification
After updating to 8.9.4 I have noticed there's a bit of an alignment issue for the category navigation element on the Home page. It's fixed to the screen so when scrolled all the way up will overlap with the search bar. I have a temporary fix below, but if anyone has any better suggestions that would be much appreciated.
Current Behavior:
Looking at the related css for the element shows that the position and top values are set be fixed to the top of the screen:
As a temporary fix I have modified my custom.css to override position and top values to correct. '!important' is required for top in order to override the previously used '!important'.
custom.css (CiresonPortal\CustomSpace\custom.css):
<div>.service-catalog-content .service-request-nav.affix {</div><div> top: 0px !important;</div><div> position: absolute;</div><div>}</div>
Comments
1. Small modification to the view.html template to change the affix binding top value from auto to 200.
\CiresonPortal\Scripts\viewPanels\serviceCatalog\view.html:
2. Replace my previous custom.css modifications with the following:
Any ideas?