• Hi, I am trying to remove some thing called the “right banner” that says

    Hey there! Thanks for dropping by alsisha test! Take a look around and grab the RSS feed to stay updated. See you around!

    here is a link to the site

    https://www.nomadikal.com/wordpress-1/

    ps, in firefox with firebug, if I select that box and delete it in the html box it is gone…

    But where the heck is the “html” file in my files, index.php ? I don’t get where to find that HTML that firebug sees.

    Thakns

Viewing 5 replies - 1 through 5 (of 5 total)
  • open header.php and remove these lines

    <div id="headerbanner">
    		<p>Hey there! Thanks for dropping by <?php bloginfo( 'name' ); ?>! Take a look around and grab the <a href="<?php bloginfo( 'rss2_url' ); ?>">RSS feed</a> to stay updated. See you around!</p>
    	</div>

    Remove this code

    <div id="headerbanner">
    		<p>Hey there! Thanks for dropping by alsisha test! Take a look around and grab the <a href="https://www.nomadikal.com/wordpress-1/?feed=rss2">RSS feed</a> to stay updated. See you around!</p>
    
    	</div>

    Lol, you owe me a coke.

    Thread Starter Blendobass

    (@blendobass)

    thanks guys…

    how about removing the whole upper menu and the search box ?

    thank you.. I got a coke for you !

    remove this from header.php

    <div id="top">
    	<div id="topmenu">
    		<ul>
    			<?php if ( !motion_hide_homelink() ) : ?><li class="page_item<?php echo ( is_home() || is_front_page() ? ' current_page_item' : '' ); ?>"><a href="<?php echo get_option( 'home' ); ?>/">Home</a></li><?php endif; ?>
    			<?php wp_list_pages( 'depth=1&title_li=0&sort_column=menu_order' ); ?>
    			<li><a class="rss" href="<?php bloginfo( 'rss2_url' ); ?>">RSS</a></li>
    		</ul>
    	</div>
    
    	<div id="search">
    		<form method="get" id="searchform" action="<?php bloginfo( 'url' ); ?>/">
    			<p>
    				<input type="text" value="<?php _e("Search this site..."); ?>" onfocus="if (this.value == '<?php _e("Search this site..."); ?>' ) { this.value = ''; }" onblur="if (this.value == '' ) { this.value = '<?php _e("Search this site..."); ?>'; }" name="s" id="searchbox" />
    				<input type="submit" class="submitbutton" value="GO" />
    			</p>
    		</form>
    	</div>
    </div><!-- /top -->

    Actually Reuben owes me a coke.

    Anyway,

    You can look for the divs that contain the items you want to remove, and edit them out, like you did with the headerbanner. Be sure to update the file afterwords.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘how to remove this part of the page’ is closed to new replies.