Title: mattskills's Replies | WordPress.org

---

# mattskills

  [  ](https://wordpress.org/support/users/mattskills/)

 *   [Profile](https://wordpress.org/support/users/mattskills/)
 *   [Topics Started](https://wordpress.org/support/users/mattskills/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mattskills/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mattskills/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mattskills/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mattskills/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mattskills/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [doctype](https://wordpress.org/support/topic/doctype-1/)
 *  [mattskills](https://wordpress.org/support/users/mattskills/)
 * (@mattskills)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/doctype-1/#post-2845904)
 * nothing noticeable will happen lol , and it is in the theme folder
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Removing the search button on search bar](https://wordpress.org/support/topic/removing-the-search-button-on-search-bar/)
 *  [mattskills](https://wordpress.org/support/users/mattskills/)
 * (@mattskills)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/removing-the-search-button-on-search-bar/#post-2845331)
 * depending on your theme the searchform could be located in several places, usually
   a php file called searchform.php , but it may also be in your sidebar.php
 * once you find it , change
    `<input type="submit" id="searchsubmit" value="Search"
   >` to `<input type="hidden" id="searchsubmit" value="Search">`
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [increase theme to 1024px](https://wordpress.org/support/topic/increase-theme-to-1024px/)
 *  [mattskills](https://wordpress.org/support/users/mattskills/)
 * (@mattskills)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/increase-theme-to-1024px/#post-2845862)
 * open style.css and change
 * .site-main {
    max-width: 72.286em;
 * to max-width:1024px;
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [changing banner](https://wordpress.org/support/topic/changing-banner-1/)
 *  [mattskills](https://wordpress.org/support/users/mattskills/)
 * (@mattskills)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/changing-banner-1/#post-2844180)
 * the images are in …/twentyeleven/images/headers/
 * this is a set of banners , one is chosen at random on every page load.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [doctype](https://wordpress.org/support/topic/doctype-1/)
 *  [mattskills](https://wordpress.org/support/users/mattskills/)
 * (@mattskills)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/doctype-1/#post-2845860)
 * this is located on line 1 of header.php and should look like this:
 * <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “[http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt](http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt);
   
   <html xmlns=”[http://www.w3.org/1999/xhtml&#8221](http://www.w3.org/1999/xhtml&#8221);
   <?php language_attributes(); ?>>
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [bloginfo() parameter](https://wordpress.org/support/topic/bloginfo-parameter/)
 *  [mattskills](https://wordpress.org/support/users/mattskills/)
 * (@mattskills)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/bloginfo-parameter/#post-2845855)
 * not quite sure what you mean…
 * the bloginfo parameter returns the site settings such as site title , stylesheet
   url, template url etc.
 * get the template url: <?php bloginfo(‘template_url’); ?>
    get the stylesheet 
   url: <?php bloginfo(‘stylesheet_url’); ?> get the site title: <?php bloginfo(‘
   name’); ?>
 * is there something specific that you are trying to do?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [adding images to the pages](https://wordpress.org/support/topic/adding-images-to-the-pages/)
 *  [mattskills](https://wordpress.org/support/users/mattskills/)
 * (@mattskills)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/adding-images-to-the-pages/#post-2845850)
 * if you don’t want to open up the template files and add it there you can insert
 * <div style=”float:right;”>
    <img src = “[http://andys.antonioborrillo.co.uk/wp/wp-content/themes/twentyeleven/images/FaceBook_48x48.png&#8221](http://andys.antonioborrillo.co.uk/wp/wp-content/themes/twentyeleven/images/FaceBook_48x48.png&#8221);
   alt = “” id = “facebook_image”> <img src = “[http://andys.antonioborrillo.co.uk/wp/wp-content/themes/twentyeleven/images/Twitter_48x48.png&#8221](http://andys.antonioborrillo.co.uk/wp/wp-content/themes/twentyeleven/images/Twitter_48x48.png&#8221);
   alt = “” id = “twitter_image”> </div>
 * into your pages individually, otherwise open up page.php in your templates folder
   and it right before the closing </div> of <div class=”entry-content”>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [getting current post title from database](https://wordpress.org/support/topic/getting-current-post-title-from-database/)
 *  Thread Starter [mattskills](https://wordpress.org/support/users/mattskills/)
 * (@mattskills)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/getting-current-post-title-from-database/#post-2417892)
 * That worked , Thanks 🙂

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