Title: PLEASE HELP
Last modified: August 20, 2016

---

# PLEASE HELP

 *  [schememag](https://wordpress.org/support/users/schememag/)
 * (@schememag)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/please-help-168/)
 * Hi,
    I want to place my searchbox on my header at the side like this.. [http://www.freshngood.com/](http://www.freshngood.com/)
 * i dont know much about coding so please help it will be much appreciated! 🙂
 * heres my blog [http://schememagazine.com/](http://schememagazine.com/)
 * _[ [http://codex.wordpress.org/Forum\_Welcome#Choose\_A\_Good\_Topic\_Title](http://codex.wordpress.org/Forum_Welcome#Choose_A_Good_Topic_Title)]_

Viewing 1 replies (of 1 total)

 *  [vtxyzzy](https://wordpress.org/support/users/vtxyzzy/)
 * (@vtxyzzy)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/please-help-168/#post-2904741)
 * You should create a [Child](http://codex.wordpress.org/Child_Themes) theme to
   make your changes. If you do not, all of your changes will be lost if you update
   your theme.
 * Add this to your functions.php to register a new sidebar for the top of the page:
 *     ```
       register_sidebar(array(
         'name' => __( 'Page Top Sidebar' ),
         'id' => 'page-top-sidebar',
         'description' => __( 'Widgets in this area will be shown at the top of the page.' ),
         'before_title' => '<h1>',
         'after_title' => '</h1>'
       ));
       ```
   
 * Add this to the end of style.css to style the sidebar:
 *     ```
       #page-top-sidebar {
           float: right;
       }
       #page-top-sidebar ul li h1 { display: none; }
       #page-top-sidebar li { list-style: outside none; }
       ```
   
 * Modify header.php by changing this:
 *     ```
       <div id="wrapperpub" class="container">
       	<div id="header">
       		<div class="sixteen columns">
       			<h1 id="blog-title" class="blogtitle"><a href="<?php echo home_url( '/' ); ?>" title="<?php bloginfo('name') ?>"><?php bloginfo('name') ?></a></h1>
       ```
   
 * to this:
 *     ```
       <div id="wrapperpub" class="container">
       	<div id="header">
       		<div class="sixteen columns">
       			<div id="page-top-sidebar"><ul>
       			   <?php dynamic_sidebar('page-top-sidebar'); ?>
       			</ul></div><!-- #page-top-sidebar -->
       			<h1 id="blog-title" class="blogtitle"><a href="<?php echo home_url( '/' ); ?>" title="<?php bloginfo('name') ?>"><?php bloginfo('name') ?></a></h1>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘PLEASE HELP’ is closed to new replies.

## Tags

 * [content](https://wordpress.org/support/topic-tag/content/)
 * [excerpts](https://wordpress.org/support/topic-tag/excerpts/)
 * [gallery](https://wordpress.org/support/topic-tag/gallery/)
 * [photos](https://wordpress.org/support/topic-tag/photos/)
 * [posts](https://wordpress.org/support/topic-tag/posts/)
 * [slideshow](https://wordpress.org/support/topic-tag/slideshow/)
 * [template](https://wordpress.org/support/topic-tag/template/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [vtxyzzy](https://wordpress.org/support/users/vtxyzzy/)
 * Last activity: [13 years, 8 months ago](https://wordpress.org/support/topic/please-help-168/#post-2904741)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
