Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter smdeconto

    (@smdeconto)

    I just found that the icons were added via Javascript in one of the .js files and was able to remove them that way. Thank you for your help!

    Thread Starter smdeconto

    (@smdeconto)

    My site is hosted locally on my computer. I am new to WordPress and theme customization (obviously).

    This is what the header.php file looks like from the Montezuma theme…

    <div id="banner-bg" class="cf">
    	<div id="banner" class="row">
    		<div id="logo-area" class="col5">
    			<<?php bfa_if_front_else( 'h1', 'h3' ); ?> id="sitetitle">
    				<a href="<?php echo home_url(); ?>"><?php bloginfo( 'name' ); ?></a>
    			</<?php bfa_if_front_else( 'h1', 'h3' ); ?>>
    			<p id="tagline"><?php bloginfo( 'description' ); ?></p>
    		</div>
    		<?php wp_nav_menu( array(
    			'container' => 'nav',
    			'container_class' => 'menu-wrapper col7',
    			'container_id' => 'menu1-wrapper',
    			'menu_id' => 'menu1',
    			'menu_class' => 'cf menu',
    			'theme_location' => 'menu1',
    			'fallback_cb' => 'bfa_page_menu'
    		) ); ?>
    	</div>
    </div>
    
    <!--<a href="<?php bloginfo( 'rss2_url' ); ?>" class="rsslink" title="<?php _e( 'Subscribe to RSS Feed', 'montezuma' ); ?>"></a> -->
    
    <!--<div id="breadcrumbs1-bg">
    	<nav id="breadcrumbs1" class="breadcrumbs lw">
    		<?php bfa_breadcrumbs( 'breadcrumbs1' ); ?>
    	</nav>
    </div> -->

    (I commented out the RSS and breadcrumbs. Unrelated.)

Viewing 2 replies - 1 through 2 (of 2 total)