-
AuthorPosts
-
December 27, 2014 at 12:28 pm #171831
Hi there-
I want to add a background image to my header/navbar like on this site: http://www.simonsayslearning.com
How do I add an image instead of a solid color?
Thanks
December 27, 2014 at 2:55 pm #171888Hi Zach,
Thanks for posting in.
Depends on what part of the header, top bar, logo bar, or nav bar. Could you provide your url address? 🙂
For the meantime, I think you’re referring on logo bar since nav bar has menu that can’t be on top of an image as your ideal site. Then try adding this css at your customizer’s custom css under Admin > Appearance with your own image url.
.x-logobar { background: url(http://link/of/your/image) no-repeat; background-size: cover; }
It’s also best if you could provide the image url and mockup of your desired result.
Thanks!
February 24, 2015 at 2:53 am #213710Hi,
Is it possible to apply this to an inline header as well? It only seems to work with a stacked header type.
February 24, 2015 at 3:29 am #213737Nevermind! I just figured out how to apply the background to the inline layout with the following code:
.x-navbar { background: url(http://background/here.jpg) repeat-x center center; padding-bottom: 20px; }
The padding was used to help me give enough space at the bottom with the shape of the logo I had, and allow me to align my nav text appropriately.
February 24, 2015 at 6:20 am #213864Glad that you fixed it 🙂
September 25, 2015 at 1:36 pm #560310I’ve got a question on this. I want to change the navbar background from clear to an image (a golden mirror) on this site: http://www.dakotachanel.intothemythica.com
Which is the correct code to do this?
September 25, 2015 at 9:42 pm #599048Hi There,
You can add this under Custom > CSS in the Customizer.
.x-navbar { background-image: url('IMAGE URL'); background-size: cover; }
Please post your reply on your own post here: https://community.theme.co/forums/topic/how-do-i-put-a-background-behind-the-menu-on-the-left-side-navbar/?replyto=570876#post-599094
Hope it helps, Cheers!
January 23, 2016 at 2:09 am #760160dear, i past your code inside the customizer, see atached file at 1, i want change the background in the header see 2 in the attachment, what do i wrong?
Thanks in advantage, best regards corJanuary 23, 2016 at 11:01 am #760536Hi @thai4more,
It seems like your CSS code is incorrect.
Please try adding this CSS:
.x-navbar { background-image: url('http://localhost/sample/wp-content/uploads/2016/01/4more-fight-shorts-nav-back-ground-1.jpg'); background-size: cover; }
Let us know how it goes!
January 23, 2016 at 11:12 am #760541sorry, i new to it, thank you very much for the best customer support i ever had.
January 24, 2016 at 12:13 am #761152You’re welcome.
February 4, 2016 at 2:38 pm #780404I have used the code below and added to my CSS Customizer and the background is not appearing in my logo bar. Did I miss something?
.x-logobar {
background: url(http://link/of/your/image) no-repeat;
background-size: cover;
}Thanks, David
February 4, 2016 at 10:55 pm #780987Hi David,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
February 5, 2016 at 3:30 pm #782246This reply has been marked as private.February 6, 2016 at 1:04 am #782740Hi there,
The URL of background image is not correct. please add it to address bar and test it : http://isdg-austin.com/bolners/bolners-header-background
Thanks.
-
AuthorPosts