Title: will64's Replies | WordPress.org

---

# will64

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] Footer is not at the bottom of the page](https://wordpress.org/support/topic/footer-is-not-at-the-bottom-of-the-page/)
 *  Thread Starter [will64](https://wordpress.org/support/users/will64/)
 * (@will64)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/footer-is-not-at-the-bottom-of-the-page/#post-9862328)
 * Hi, Tom,
    Sorry for my late reply. A min-height works perfectly. Thank you very
   much, I didn’t think of that.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] Footer is not at the bottom of the page](https://wordpress.org/support/topic/footer-is-not-at-the-bottom-of-the-page/)
 *  Thread Starter [will64](https://wordpress.org/support/users/will64/)
 * (@will64)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/footer-is-not-at-the-bottom-of-the-page/#post-9849188)
 * Thank you very much for your answer, Leo.
 * the code given by tom doesn’t work for me: it removes the background of the site
   after the footer, but this one isn’t at the bottom of the page. See the image:
 * ![](https://i0.wp.com/img15.hostingpics.net/pics/182722footerpb2.png?ssl=1)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] move “entry-summary” in “entery-header” to the articles archive page](https://wordpress.org/support/topic/move-entry-summary-in-entery-header-to-the-articles-archive-page/)
 *  Thread Starter [will64](https://wordpress.org/support/users/will64/)
 * (@will64)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/move-entry-summary-in-entery-header-to-the-articles-archive-page/#post-9774672)
 * Thank you very much Tom, it works perfectly.
    One last question, is it possible
   to reduce the number of words in the excerpt?
 * [UPDATE]
    In fact, I just found out: you have to copy and paste this code into
   the functions. php file of your child theme:
 *     ```
       function wpm_post_excerpt($length) {
       	return 20;
       }
       add_filter('excerpt_length', 'wpm_post_excerpt');
       ```
   
 * In this example, the excerpt will contain 20 words. You can modify this number
   by the one you want.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[GeneratePress] move “entry-summary” in “entery-header” to the articles archive page](https://wordpress.org/support/topic/move-entry-summary-in-entery-header-to-the-articles-archive-page/)
 *  Thread Starter [will64](https://wordpress.org/support/users/will64/)
 * (@will64)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/move-entry-summary-in-entery-header-to-the-articles-archive-page/#post-9773078)
 * Hi Tom,
 * Thank you very much for your answer. Well, you’re right.
 * Finally, I found another way to do what I wanted to do:
    I wanted the thumbnail
   on the front left and all the text on the right (I didn’t want text below the
   image).
 * ![](https://i0.wp.com/img15.hostingpics.net/pics/379731site.png?resize=1303%2C552&
   ssl=1)
 * Here’s the code I used:
 *     ```
       SECTION#primary > MAIN#main > ARTICLE > DIV.inside-article {
         overflow: hidden;
         padding-left: 330px!important;
       }
       .post-image{
         margin: 0 0 0 0;
         margin-left: -295px!important;
         float: left;
         max-width: 295px;
       }
       .size-full {
         vertical-align: bottom;
         border-radius: 6px;
       }
       SECTION#primary > MAIN#main > ARTICLE > DIV.inside-article > HEADER.entry-header, .entry-summary {
         margin-left: 2em;
       }  
       ```
   
 * I have another question: I would like the date to be above the title of the article.
   Is it possible, how to do it?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hueman] Update 3.3.8: Topbar menu background color problem](https://wordpress.org/support/topic/update-3-3-8-topbar-menu-background-color-problem/)
 *  Thread Starter [will64](https://wordpress.org/support/users/will64/)
 * (@will64)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/update-3-3-8-topbar-menu-background-color-problem/#post-9002917)
 * I come to point out another problem that I found:
    The widget area in the header
   disappears when you switch to mobile or tablet. For info, I have used this code
   given on the forum:
 *     ```
       /* always display header widgets */
       #header-widgets {
           display: block !important;
       }
       #header-widgets {
           max-width: 728px;
           width: 100%;
       }@media only screen and (max-width: 728px) {
         #header-widgets {
           display: block !important;
         }
       }
       /* changes for iPad viewport */
       @media only screen and (max-width: 1200px){
           /* remove top padding */
           #header .pad {
               padding-top: 0;
           }
           /* adjust and center title */
           .site-title {
               padding: 30px 0;
               width: 100%;
               float: none;
               line-height: 50px;
           }
           .site-title a {
               text-align: center;
           }
           /* hide description */
           .site-description {
       	display: none;
           }
           /* center ads widget container */
           #header-widgets {
               max-width: 728px;
               width: 100%;
       	float: none;
       	margin: 0 auto;
           }
       }
       ```
   
 * Edit: I have just seen that this problem will be solved in the next version (
   3.3.9):
    [https://wordpress.org/support/topic/version-3-3-8-issue-header-widget-not-displaying/](https://wordpress.org/support/topic/version-3-3-8-issue-header-widget-not-displaying/)

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