• I would like to disable the sticky heading/menu since it interferes with my page jumps, but I don’t know how. I tried to add this CSS code

    header.site-header {
    position: absolute !important;
    }

    But it didn’t work. I also asked the creators of my theme (Notumn) for help, but they hardly respond…

    Can someone please help me?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • That seems to be a commercial theme… From ThemeForest! You’ll need to ask them for help (I did look though).

    If you want to dig around in the HTML you’ll probably find that in the index.php in the theme directory.

    I really stink at CSS but I think removing the code might be the better way here.

    Thread Starter jacquibolt

    (@jacquibolt)

    Thanks @jnashhawkins
    I already asked ThemeForest for help, but they hardly respond…

    What should I look for at the index.php? This is the HTML of my index.php:

    <?php
    /**
     * Index page.
     *
     * @package notumn
     * @since 1.0
     */
    
    $notumn_home_layout    = get_theme_mod( 'notumn_homepage_layout', 'full_sidebar' );
    $notumn_home_sidebar   = ( preg_match( '/sidebar/', $notumn_home_layout ) ) ? true : false;
    $notumn_home_layout    = explode( '_', $notumn_home_layout );
    $notumn_home_layout    = $notumn_home_layout[0];
    $notumn_carousel       = get_theme_mod( 'notumn_featured_carousel', true );
    $notumn_carousel_style = get_theme_mod( 'notumn_carousel_style', 'style-1' );
    $notumn_container_lg   = array( 'list', 'fullwidth', 'grid' );
    $notumn_section_title  = array( 'list', 'grid' );
    
    get_header();
    ?>
    
    <?php if ( $notumn_carousel && $notumn_carousel_style === 'style-1' ) :
    	get_template_part( 'includes/templates/featured_carousel' );
    endif;
    
    if ( in_array( $notumn_home_layout, $notumn_container_lg, true ) ) : ?>
    	<div class="container container-lg">
    <?php else : ?>
    	<div class="container">
    <?php endif; ?>
    	
    		<?php get_template_part( 'includes/templates/top_custom_code' ); ?>
    
    		<div class="row">
    
    			<?php if ( $notumn_home_layout === 'grid' && ! $notumn_home_sidebar ) : ?>
    			<div class="col-md-12">
    			<?php elseif ( $notumn_home_layout === 'fullwidth' ) : ?>
    			<div class="col-md-10 col-md-push-1">
    			<?php else : ?>
    			<div class="col-md-8 <?php echo sanitize_html_class( ($notumn_home_sidebar)? 'posts-column' : 'col-md-push-2' ) ?>">
    			<?php endif; ?>
    
    			<?php if ( $notumn_carousel && $notumn_carousel_style === 'style-2' && $notumn_home_sidebar ) {
    				get_template_part( 'includes/templates/featured_carousel' ); } ?>
    
    				<div class="posts-container relative <?php echo sanitize_html_class( $notumn_home_layout ); ?>">
    
    					<?php if ( in_array( $notumn_home_layout, $notumn_section_title, true ) ) : ?>
    					<div class="section-title font-2">
    						<h2><?php echo esc_html( get_theme_mod( 'notumn_section_title', __( 'Latest Posts', 'notumn' ) ) ); ?></h2>
    					</div><!-- .section-title-->
    					<?php endif; ?>
    
    					<?php if ( $notumn_home_layout === 'grid' ) : ?>
    						<div class="row">
    					<?php endif; ?>
    
    					<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    						<?php get_template_part( 'content', $notumn_home_layout ); ?>
    					<?php endwhile; endif; ?>
    
    					<?php if ( $notumn_home_layout === 'grid' ) : ?>
    						</div>
    					<?php endif; ?>
    
    				</div><!-- .posts-container -->
    
    				<?php get_template_part( 'includes/templates/blog_pagination' ); ?>
    
    			</div><!-- .posts-column -->
    
    			<?php if ( $notumn_home_sidebar ) { get_sidebar(); } ?>
    
    		</div><!-- .row -->
    
    		<?php get_template_part( 'includes/templates/bottom_custom_code' ); ?>
    
    	</div><!-- .container -->
    
    <?php
    get_footer();
    • This reply was modified 2 years, 10 months ago by jacquibolt.

    I do wish your theme author would help you with a hint or two of what to look for!

    You want customization – You’ll probably need to hire someone to do that for you or dig in and do it yourself. We are support volunteers here… I’m one who really doesn’t do much theme customization.

    There are thousands of free themes so usually, I can find what I want. Maybe look there.

    https://wordpress.org/themes/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘disable sticky menu’ is closed to new replies.