• Resolved jokemonster

    (@jokemonster)


    I’m using this theme on a website:
    https://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 the right things to edit, but code isn’t my strong point so I probably missed it. Anyone have any recommendations?

Viewing 1 replies (of 1 total)
  • Thread Starter jokemonster

    (@jokemonster)

    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.

    • This reply was modified 8 years, 5 months ago by jokemonster.
Viewing 1 replies (of 1 total)
  • The topic ‘Change fullscreen header to standard header on Arcade Theme’ is closed to new replies.