Title: memet_'s Replies | WordPress.org

---

# memet_

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[pinpress] Sidebar, search box and localization](https://wordpress.org/support/topic/sidebar-search-box-and-localization/)
 *  Thread Starter [memet_](https://wordpress.org/support/users/memet_/)
 * (@memet_)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/sidebar-search-box-and-localization/#post-5157916)
 * **Problems are solved. My only problem is that I don’t know how to translate 
   the theme to another language. Please help me if you can.**
 * For the solution of multiple search boxes and overlapping sidebar problem, look
   below:
 * Tinkering around with it a bit more, I realized that I may be able to solve the
   problem with a few changes on `site-content` css class. Some attributes that `
   singlepost` has and `site-content` doesn’t have causes the sidebar work on sigle
   posts flawlessly and on the homepage with problems when the screen has a lower
   width than 768px (style.css, line 1402).
 * I’ve found the problem.
    **1.** I removed `style="width:100%;"` from the line`
   <div id="col" style="width:100%;" class="column">` completely instead of changing
   it. **2.** When I first tried to add the sidebar to the homepage, I added the
   sidebar on the top of the php file under the header: this was a mistake. I added
   it at the bottom of the page, before the footer, and made the necessary changes
   in style.css after that. So the bottom of home.php reads:
 *     ```
       <?php get_sidebar(); ?>
       <?php get_footer(); ?>
       ```
   
 * **3.** I added
    `.site-content{width:72%;float:left}` before the line `.singlepost{
   width:72%;float:left}` (line 1397) so that the homepage content will cover 72%
   of the screen on high-res screens and
 * **4.** I added
    `.site-content{width:100%;float:none;}` before the line `.singlepost{
   width:100%;float:none;}` (line 1402) so that the homepage will cover all of the
   screen on low-res screens and behave exactly as the singlepost pages (widget 
   area after the content)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[pinpress] Sidebar, search box and localization](https://wordpress.org/support/topic/sidebar-search-box-and-localization/)
 *  Thread Starter [memet_](https://wordpress.org/support/users/memet_/)
 * (@memet_)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/sidebar-search-box-and-localization/#post-5157890)
 * Double search box problem solved by removing line 37, that is
    `<div class="searchform_headercover"
   ><?php get_search_form(); ?></div>` from header.php.
 * The overlapping problem is still not solved.

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