Posts

Tab Menu CSS: ==================== Css ul.nav-list {     width : 100% ;     margin : 0 auto ; /*If the menu has a width, this "margin:0 auto;" makes the menu center-aligned. You can remove it for left-alignment, or change it to "margin-left:auto; margin-right:0;" for right-alignment.*/     text-align : left ;     list-style : none ;     padding : 0 ;     font-size : 0 ;     position : relative ; } ul.nav-list:after {     content : '.' ; width : 100% ; height : 0 ; border-bottom : 1px solid #438EB9 ; }         ul.nav-list li {     display : inline ;     list-style : none ; padding : 0 ;     margin-top : 0 ; margin-bottom : 0 ;     margin-left : 0 ; margin-right : -1px ; } ul.nav-list li a {     letter-spacing : normal ;     color : #666666 ;     padding : 0 14px ;     line-height : 26px ;     font-size : 14px ;     font-weight : normal ;     font-family : Arial ;     text-decoration :
Recent posts