• So if you go to my website (weenze.com) you can see that the top nav bar is black…I have been trying to change it blue but can not find the code anywhere, I am currently using the parament and was hoping someone could just give me a way to find the code to change it.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Anjara

    (@hiteshanjara)

    Hello,

    You need to change the css in style.css file line no: 79

    /wp-content/themes/pub/parament/style.css

    #menu a {
    color: #989EAE !important;
    display: block;
    line-height: 40px;
    padding: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
    }

    You just need to add !important in color property at above css code.

    Let me know if you have any query on the same. ??

    Thread Starter weenze

    (@weenze)

    Maybe im just really bad at this but its not working lol the color i am trying to input is #326cb3. So I changed it to this

    #menu a {
    color: #326cb3!important;
    display: block;
    line-height: 40px;
    padding: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
    }

    Is that right? This is really like my first time working with code lol so my bad if its wrong

    Thread Starter weenze

    (@weenze)

    I mean its probably not right since it didnt fix it lol

    Anjara

    (@hiteshanjara)

    Please give space between color code and !important word in color property.

    Like this – color: #326cb3 !important;

    OR you can replace whole code –

    #menu a {
    color: #326cb3 !important;
    display: block;
    line-height: 40px;
    padding: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
    }
    Thread Starter weenze

    (@weenze)

    When I do that it only turns the text in the tabs blue, Im trying to turn the whole nav bar blue and leave the text black, im trying to have it fit the color scheme of the site lol

    Anjara

    (@hiteshanjara)

    If you want to give blue color to whole nav bar, then go to line – 322 in your style.css file. and replace this code for #menu

    #menu {
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#111',endColorstr='#111',GradientType=0);
    background:blue;
    border:1px solid #326cb3;
    border-radius:7px;
    clear:both;
    float:left;
    width:1000px;
    margin:0;
    padding:7px 0 0;
    }

    OR

    You can change the background color only. ??

    Thread Starter weenze

    (@weenze)

    Dude Thank you! You are a genius haha that was driving me nuts!

    Anjara

    (@hiteshanjara)

    Yo welcome.. ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Can Someone Please tell me where the nav bar code is’ is closed to new replies.