-
AuthorPosts
-
July 15, 2014 at 7:35 pm #69047
Hi, I’d like to add a background image to the Renew theme header. The image should fill the yellow field behind the logo. I’ve tried searching but I can’t figure this out.
July 16, 2014 at 1:48 pm #69476Hi Anthony,
You can achieve that using CSS,
Please add this in Customizer -> Custom -> CSS and change the image source url
.x-logobar-inner { background: url('your-image-url-here.jpg') no-repeat center top; }
let us know how it works out for you.
Cheers
July 16, 2014 at 2:31 pm #69512Yep, just what I needed.
Another question for you. Is there a resource available that would tell me what css styles to modify for things such as this?
July 16, 2014 at 4:06 pm #69574Hi Anthony,
You can use “Firebug” extension for Firefox and Chrome Built-in function called “Inspect Element”
You can simply google those two things and it would give you thousands of result and tutorials on how to use them also and how to get the classes for specific division.
Cheers.
March 19, 2016 at 4:28 pm #844598I used the css fix mentioned above:
Please add this in Customizer -> Custom -> CSS and change the image source url
.x-logobar-inner {
background: url(‘your-image-url-here.jpg’) no-repeat center top;
}…and now have the header image I want. How do I now make it mimic the dynamic window size updating shown on the Theme X demo page? (shown here: http://theme.co/x/) When I open that web page, the Nav bar is perfectly aligned at the bottom of the window, even when I resize the window. Both the Nav bar position and header background image update dynamically to match the users window size. How do I do that? Then as I scroll down, the Nav bar goes up and attaches itself to the top of the users window. Please help and thanks in advance.
March 20, 2016 at 5:17 am #844977Please see https://community.theme.co/kb/sliders/ to learn how that setup is achieved.
Thanks.
March 21, 2016 at 12:00 pm #846648The problem we have is that the background only covers the header. But it doesn’t cover the menu area? We want the background to cover both the header background as well as the menu too?
thanks
March 21, 2016 at 12:20 pm #846671March 21, 2016 at 12:29 pm #846682March 21, 2016 at 12:30 pm #846683This reply has been marked as private.March 21, 2016 at 1:28 pm #846762Hi there,
You can add this under Custom > CSS in the Customizer.
.x-navbar { background-color: transparent; margin-top: -80px; } .x-navbar .desktop .x-nav > li > a { height: 50px; } .x-nav-wrap.desktop { margin-top: 30px; }
Hope this helps.
March 23, 2016 at 1:15 am #849095Thanks that works!
March 23, 2016 at 1:23 am #849101We’re delighted to assist you with this.
Cheers!
March 23, 2016 at 3:24 pm #850033I used the info you provided above (Please see https://community.theme.co/kb/sliders/ to learn how that setup is achieved) to get the full-screen view with offset masthead so my nav bar appears at the bottom regardless of screen size. PERFECT.
Next, when I scroll down, I want the nav bar to anchor itself to the top of the page just like on the Theme X demo (http://theme.co/x/). I didn’t see how to do that on the video. How do I do that?
http://www.destinationgrowth.org is my page in case you’d like to see what I’m talking about.
March 23, 2016 at 5:30 pm #850222Hi there,
Thanks for updating the thread! Regarding the navbar anchoring or becoming sticky when scrolling. You can set this option in the customizer.
Appearance > Customize > Header > Navbar Position >> Set this to Fixed Top.
Hope this helps – thanks!
-
AuthorPosts