Change fullscreen header to standard header on Arcade Theme
-
I’m using this theme on a website:
http://demos.bavotasan.com/arcade/What I want to do is replace the fullscreen header you get on the homepage of that demo, with a more traditional header like you can see on any of the other pages (blog, sample pages, etc.).
I’ve had a look through the CSS and couldn’t find it, but code isn’t my strong point so I probably missed it. Anyone have any recommendations?
-
I managed to figure it out myself. I noticed that the header height was being defined by an element.style, so I thought to check in the javascript files. Managed to find:
if ( window_width < 599 || ! $( 'body' ).hasClass( 'home' ) || ( $( 'body' ).hasClass( 'home' ) && $( 'body' ).hasClass( 'paged' ) ) ) { $card.css( 'height', 300 ); $more_site.removeData( 'scroll-to' ).attr( 'data-scroll-to', 300 ); } else { $card.css( 'height', window_height ); $more_site.removeData( 'scroll-to' ).attr( 'data-scroll-to', window_height );I just changed “599” to a ridiculously high number like 8000.
-
Hey there,
It sounds like if you were able to look through the CSS then you have a wordpress.org site instead of a .com site? https://en.support.wordpress.com/com-vs-org/
If that’s the case, then you would need to contact the theme devs for support https://themes.bavotasan.com/contact/
(If it was for a free theme but still on a .org site then you’d have better luck going to the .org support forums https://wordpress.org/support/ )
Let me know if you have any questions,
Sage -
Yeah, that would be a .org install, for any future support please head over to https://wordpress.org/support/ :)
Thanks,
Sage
- The topic ‘Change fullscreen header to standard header on Arcade Theme’ is closed to new replies.