• katiebarthedoor

    (@katiebarthedoor)


    One more issue – I can’t seem to change either the navigation bar color or the navigation bar text color. I would like to change either one of them to red. I’m using jetpack’s css editor. Any advice?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author bandicootmarketing

    (@tinkerpriest)

    Use Chrome’s dev tools. Right click over whatever element you want to modify and select “Inspect Element”. You will now see the CSS used to style that element in the dev console. That is a great guide for what you need to change.

    ok found were to change background color but not the textcolor? also what css

    background color changes here:

    media="all"
    .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
    }
    www.agnetastrindinger.com/media="all"
    .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    font-color: #ababab;
    list-style: none;
    /* color: darkblue; */
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Navigation bar color or text color’ is closed to new replies.