Title: Thomas Eschemann's Replies | WordPress.org

---

# Thomas Eschemann

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [why inline element doesn't work?](https://wordpress.org/support/topic/why-inline-element-doesnt-work/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/why-inline-element-doesnt-work/#post-2427817)
 * The code you posted does print Title and Content in one line, however you probably
   shouldn’t be printing the_content() in a h2 tag.
    I would rather use something
   like that :
 *     ```
       <h2 class="inline"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
       <span class="entry"><?php the_content(); ?></span>
       ```
   
 *     ```
       .inline{
           display:inline;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Spacing issues in IE (twentyeleven theme)…](https://wordpress.org/support/topic/spacing-issues-in-ie-twentyeleven-theme/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/spacing-issues-in-ie-twentyeleven-theme/#post-2412731)
 * Hi,
 * The easiest solution I see is to use :
 *     ```
       <!--[if IE 7]>
       your IE7 stylesheet here
       <![endif]-->
       ```
   
 * to redefine the position of both blocks in IE.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [how to change the post content on mainpage?](https://wordpress.org/support/topic/how-to-change-the-post-content-on-mainpage/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/how-to-change-the-post-content-on-mainpage/#post-2426214)
 * Hi,
 * If you don’t really care about old browsers you could add something like this
   to your style.css :
 *     ```
       #content img{
       opacity:0.5;
       }
       #content img:hover{
       opacity:1;
       }
       ```
   
 * Also I noticed you are using the same ID for each post “home_image”, you should
   change that to a class.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to change header name](https://wordpress.org/support/topic/how-to-change-header-name/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/how-to-change-header-name/#post-2425776)
 * In your Dashboard go the Settings and edit the first field called Site Title
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [how to change color of title](https://wordpress.org/support/topic/how-to-change-color-of-title/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/how-to-change-color-of-title/#post-2425774)
 * Hi,
 * Find the following lines in your style.css :
 *     ```
       #logo a {
       color: #424242;
       text-decoration: none;
       font-size: 40px;
       float: left;
       }
       ```
   
 * And edit `color: #424242;` by setting color to what ever color you want ([http://www.colorpicker.com/](http://www.colorpicker.com/)).
 * You will also need to edit the following styles in your header :
 *     ```
       #logo a, #topmenu ul li a, #footmenu ul li a, #comments, body, .towfiq{
       color:#ffffff!important;
       }
       ```
   
 * to
 *     ```
       #topmenu ul li a, #footmenu ul li a, #comments, body, .towfiq{
       color:#ffffff!important;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove sidebar/widget area](https://wordpress.org/support/topic/remove-sidebarwidget-area/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebarwidget-area/#post-2425773)
 * Hi,
    WordPress themes usually use `<?php get_sidebar(); ?>` to include the sidebar.
   Removing this instruction from your pages should remove the sidebar
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How can I change sidebar width size?](https://wordpress.org/support/topic/how-can-i-change-sidebar-width-size/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/how-can-i-change-sidebar-width-size/#post-2425068)
 * Change this :
 *     ```
       .content {
       float: left;
       width: 625px;
       padding: 15px 25px 0 10px;
       overflow: hidden;
       }
       ```
   
 * to this :
 *     ```
       .content {
       float: left;
       width: 595px;
       padding: 15px 25px 0 10px;
       overflow: hidden;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How can I change sidebar width size?](https://wordpress.org/support/topic/how-can-i-change-sidebar-width-size/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/how-can-i-change-sidebar-width-size/#post-2425016)
 * Hi,
    You have to edit your style.css file by replacing :
 *     ```
       .sidebar {
       background: url(images/sidebar-divider.png) 0 0 repeat-y;
       padding: 0 0 0 29px;
       margin-top: 30px;
       position: relative;
       width: 260px;
       float: left;
       overflow: hidden;
       }
       ```
   
 * by :
 *     ```
       .sidebar {
       background: url(images/sidebar-divider.png) 0 0 repeat-y;
       padding: 0 0 0 29px;
       margin-top: 30px;
       position: relative;
       width: 300px;
       float: left;
       overflow: hidden;
       }
       ```
   
 * You will however have to change the width of your content block to 595px, otherwise
   the sidebar will not be able to float left to the content.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Where is this space coming from?](https://wordpress.org/support/topic/where-is-this-space-coming-from/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/where-is-this-space-coming-from/#post-2425007)
 * You have to reset the default browser padding by setting padding:0 on #nav ul
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Where is this space coming from?](https://wordpress.org/support/topic/where-is-this-space-coming-from/)
 *  [Thomas Eschemann](https://wordpress.org/support/users/teschemann/)
 * (@teschemann)
 * [14 years, 4 months ago](https://wordpress.org/support/topic/where-is-this-space-coming-from/#post-2425004)
 * Hi,
 * You are setting a 10px left margin directly in the img tag
 * `<img src="http://linesofexcellence.com/wp-content/themes/LOEv2/images/logo.gif"
   width="130" height="135" border="0" alt="" style="margin-left: 10px; "/>`

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