Background Image in .navbar

Hi. Thank you for your theme! I’m having a few issues which I will post as separate topics so they can be closed. Im trying to put a background image into .navbar. I want it to repeat across the top banner that is currently black. This is the code I am using in the editor:
.navbar.navbar-default {
background-image: url(http://garyahlskog.com/wp-content/uploads/2014/04/newhd.jpg) repeat top left;
}
Not sure why it’s not working. I’m doing this offline but it should still work no?

Thank you in advance!

There is a simple problem with your code, you can’t use background-image with other attributes such as “repeat top left” To use them you either have to use a simple “background” or use “background-repeat” and “background-position” on top of “background-image”.

The simplest method would be to use:

.navbar.navbar-default {
background: url(http://garyahlskog.com/wp-content/uploads/2014/04/newhd.jpg) repeat top left;
}

Thank you! It didn’t work at first, but then I changed this color from black to white and then it worked.

.navbar.navbar-default {
background-color: #ffffff;
}

I try to do the same, what file in the editor do i have to edit? Thank you in advance.

You don’t need to edit any file but add above mentioned code in Theme Options - Other - Custom CSS. Of course you might want to edit it to get the results you were looking for.