Bootstrap change the navbar font-size

前端 未结 1 379
抹茶落季
抹茶落季 2021-01-01 00:46

I have wasted 2 hours, searching for the solution. I want to change the font size of the navbar and change the font-size even in the media queries. I can change the color no

相关标签:
1条回答
  • 2021-01-01 01:41

    Here is a working demo for you considering that you wanted padding-right between links Home and About etc.

    For links i have used the css class .nav li

     nav {
         width: 100%;
         height: 40px;
         background: -webkit-linear-gradient(#3f9a15, #388813, #3f9a15, #388813, #3f9a15);
         background: -o-linear-gradient(#3f9a15, #388813, #3f9a15, #388813, #3f9a15);
         background: linear-gradient(#3f9a15, #388813, #3f9a15, #388813, #3f9a15);
         border-radius: 6px !important;
         -moz-border-radius: 6px !important;
            }
    .nav a{
        color: white !important;
        font-size: 1.8em !important;
        }
    .nav li{
        padding-right:5px;
       }
    
    0 讨论(0)
提交回复
热议问题