• Resolved lantiis

    (@lantiis)


    Using this code in the Extra CSS field:

    @media only screen and (min-width: 900px) {#site-navigation {
    width: 900px;
    margin: 0 auto;
    }}

    Is there a way to make it so the bg color of the navbar extends (auto width) across the whole screen?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author ceslava

    (@ceslava)

    Try this instead

    @media only screen and (min-width: 900px) {
    #site-navigation ul {
    float: none;
    width: 900px;
    margin: 0 auto;}}
    Damon Cook

    (@colorful-tones)

    Please try:

    #site-navigation {
        background-color: #52C5FF;
    }

    You probably don’t need to set the background-color within the breakpoint.

    Is that what you’re aiming for?

    Thread Starter lantiis

    (@lantiis)

    Perfect!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Extend BG Color of NavBar’ is closed to new replies.