Title: Jiert's Replies | WordPress.org

---

# Jiert

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post Slug randomly broke](https://wordpress.org/support/topic/post-slug-randomly-broke/)
 *  Thread Starter [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [13 years ago](https://wordpress.org/support/topic/post-slug-randomly-broke/#post-3051857)
 * Sadly I did not.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Having Problems with Admin and Post/Page Editor after Upgrade? Please Read](https://wordpress.org/support/topic/having-problems-with-admin-and-postpage-editor-after-upgrade-please-read/)
 *  Thread Starter [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/having-problems-with-admin-and-postpage-editor-after-upgrade-please-read/#post-2459878)
 * Studioxpressbr,
 * Do you have a site I can look at? Do you know what version of jQuery you’re using?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why won't default search find a post title?](https://wordpress.org/support/topic/why-wont-default-search-find-a-post-title/)
 *  Thread Starter [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/why-wont-default-search-find-a-post-title/#post-2376335)
 * Thanks Esmi,
 * It’s a theme-specific issue. Everything works fine in Twenty Eleven. Not sure
   why just yet, but looking.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why won't default search find a post title?](https://wordpress.org/support/topic/why-wont-default-search-find-a-post-title/)
 *  Thread Starter [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/why-wont-default-search-find-a-post-title/#post-2376323)
 * I know right? What gives?
 * I figured out that if I change the theme to twentyeleven, posts show up in the
   results as I’d expect, so I must be doing something wrong in my search.php template.
   I’ll provide an update when I figure it out.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Need space between posts. Only post area in php](https://wordpress.org/support/topic/need-space-between-posts-only-post-area-in-php/)
 *  [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/need-space-between-posts-only-post-area-in-php/#post-2242228)
 * Hey there,
 * First, you should never have multiple elements with the same ID. Your loop is
   creating posts that all have the same ID of “postblock”. You should change that
   to a class.
 * If I’m not mistaken, it seems as though you want to make the postarea div all
   gray, so to do that you can float that div left and add a background color:
 *     ```
       .postarea {
           background-color: gray;
           float: left;
       }
       ```
   
 * And then if you want to make your posts have a white background, you could add
   some margin and change the 100% width like so:
 * If you change postblock to a class
 *     ```
       .postblock {
           background-color: #FFFFFF;
           margin: 10px;
           width: inherit;
       }
       ```
   
 * If you don’t
 *     ```
       #postblock {
           background-color: #FFFFFF;
           margin: 10px;
           width: inherit;
       }
       ```
   
 * Hopefully this helps!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Eleven Theme – Problem with Margins](https://wordpress.org/support/topic/twenty-eleven-theme-problem-with-margins/)
 *  [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/twenty-eleven-theme-problem-with-margins/#post-2242667)
 * Thanks!
 * I suspect that what’s happening is that when you view your site on other computers,
   those computers have different monitor widths than your computer, or you’re viewing
   the site it a browser window that’s narrower than what you’re used to seeing.
 * Your main blog content area (#page) is set to have a maximum width of 1000 pixels,
   which means that with any browser window that is wider than 1000 pixels, it will
   show your background for the extra space not taken up by the blog content. You
   can see what this looks like by adjusting your own browser window.
 * If you wanted to ALWAYS have at least a certain amount of your background image
   show on the sides, you could increase the padding on your #page div, but beware:
   for users that have narrow browsers, they may be more interested in your content
   that your background image.
 * Hope this helps!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Twenty Eleven Theme – Problem with Margins](https://wordpress.org/support/topic/twenty-eleven-theme-problem-with-margins/)
 *  [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/twenty-eleven-theme-problem-with-margins/#post-2242664)
 * Hi ladybajan,
 * Do you have a link you can share so that we may have a look at the issue you’re
   referring to?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [using themes listed on WordPress](https://wordpress.org/support/topic/using-themes-listed-on-wordpress/)
 *  [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/using-themes-listed-on-wordpress/#post-2242223)
 * Hi karenhymer, welcome to WordPress!
 * Have you had a look yet at the [Using Themes](http://codex.wordpress.org/Using_Themes)
   page in the documentation?
 * There are instructions on how to add new themes using various methods, hopefully
   that will help.
 * Cheers,
    Jiert
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [WordPress Version 2.8.5 Page Theme](https://wordpress.org/support/topic/wordpress-version-285-page-theme/)
 *  [Jiert](https://wordpress.org/support/users/jiert/)
 * (@jiert)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/wordpress-version-285-page-theme/#post-1272522)
 * [@redlinemd](https://wordpress.org/support/users/redlinemd/),
 * I’m getting the same problem. I’ve created my theme template correctly, but the
   drop down doesn’t show up in the Page Write panel.
 * When I switch to the default wp theme, the issue goes away. Switching back does
   nothing.
 * Also, I’m using the WP-Framworks theme as starting point.
 * any help would be appreciated.
 * EDIT: For some reason the syntax in the WP-Framework files didn’t include ‘Name’
   when naming templates. As in:
    /* Template Name: test */
 * vs.
 * /* Template: test */
 * Hope this helps for others.

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