Hello, i wanna get my header normal i don't want it to be fixed anymore, please help what shall i do ?
It really depends on the theme that you've used and how much control you have in the admin settings otherwise you will be editing the a stack of template files including style.css. Can't tell you which files without knowing which template you use - and even then you might be better going to the designer's site and asking. You may find it is quicker and simpler just to get a new template.
Go to wordpress admin area, then find Appearance or Themes section. Then go to Editor, then lookup style.css or similar .css file to edit. Then copy that file contents and save it for backup purpose, then find in that file width parameter next to main body / header div. and adjust the width in pixels.If its too hard, you need to hire someone or ask developer as mentioned above.
Have all the necessary things in both header.php and footer.php. i am giving you their template structure, please check in you theme if anything is missing. header.php <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <title><?php wp_title( '|', true, 'right' ); ?></title> <?php wp_head(); ?> <link rel="icon" type="image/png" href="<?php echo get_stylesheet_directory_uri(); ?>/Images/favicon.ico" /> </head> <body <?php body_class(); ?>> <div id="header" class="header"> <div id="navigation"> <?php $defaults = array( 'theme_location' => '', 'menu' => '', 'container' => '', 'container_class' => '', 'container_id' => '', 'menu_class' => 'menu', 'menu_id' => '', 'echo' => true, 'fallback_cb' => 'wp_page_menu', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', 'depth' => 0, 'walker' => '' ); wp_nav_menu( $defaults ); ?> </div> </div> PHP: footer sturcture (footer.php) <div id="footer" class="footer"> </div> </div> <?php wp_footer(); ?> </body></html> PHP: