How to get the old navigation style in SwiftPremium
We changed the default styling of SwiftPremium to be different from the free version. If you are a fan of the old navigation style, you can get it by adding the following CSS code to user CSS.
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#nav1-container,#nav2-container{background:#dbdbdb;border:0} .navigation{margin-left:5px} .navigation li a{background:none!important} .navigation li a:hover{background:#EEE} /* For rounded corners*/ #footer-ad-container{padding:8px 0} #nav1-container { -moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 8px;padding: 4px 0} #nav2-container { -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;padding:4px 0} |

