Title: Posts Page Layout
Last modified: August 21, 2016

---

# Posts Page Layout

 *  Resolved [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/)
 * Hey Tomas,
 * My website is [http://www.eblireads.com](http://www.eblireads.com) — If you go
   to our news page (the page where I link to individual posts) [http://eblireads.com/about-us/in-the-press/](http://eblireads.com/about-us/in-the-press/)
   and then click on any of those individual posts, you’ll notice that the page 
   layout there is the “default” page layout (widgets included on the right side
   in our case)
 * I want to change the layout of the posts page to be the full size, without widgets
   layout.
 * Let me know if we can make this work!

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

 *  Thread Starter [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489454)
 * One more question — How can we get the page titles (on the Welcome page, it says“
   Welcome” at the top, About says “About” at the top, etc.) to go away?
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489480)
 * Regarding sidebar please read:
 * [http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Sidebar](http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Sidebar)
 * To remove title on that particular page you can use:
 *     ```
       .home .entry-title {
       display: none;
       }
       ```
   
 * Check the source of other pages and replace .home with other distinct class of
   BODY.
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489481)
 * Also I would suggest to replace that big blue container with DIV containing real
   text and having that blue image as background, because Google reads text, not
   images.
 *  Thread Starter [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489484)
 * Do you know of a good link that can help me with DIV codes? Especially one that
   will allow me to include an image as a background instead of just a plain color
   block?
 *  Thread Starter [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489485)
 * And so it looks like the sidebar from posts can’t be removed, correct?
 * I also can’t seem to find where that code section is to remove the titles from
   each page. Or does that code have to be added in some place?
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489489)
 * About divs, just google:
 * HTML Div
 * and then styles:
 * CSS background
    CSS background image
 * in most cases you will get there: [http://www.w3schools.com/css/css_background.asp](http://www.w3schools.com/css/css_background.asp)
 * Sidebar: having in mind your experience, I suggest you using that plugin.
 * Just post that code at the very end under custom css.
 *  Thread Starter [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489491)
 * [http://eblireads.com/](http://eblireads.com/) — All of the issues are fixed.
 * However, one more thing — Is it possible to edit the posts page? Adding a banner
   or a background image? Anything at all?
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489492)
 * first add:
 * padding: 20px;
 * for that div in front page.
 * BG image for post page you can do via style.css same as with div.
 * In order to add banner most likely you have to copy index.php to home.php and
   edit it.
 *  Thread Starter [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489508)
 * Not sure about the padding… it shifts the div to the right and creeps behind 
   the videos. Also, with or without the padding, the front page looks really off
   when viewing from a mobile device… Any thoughts?
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489534)
 * That’s because you made that div wider than the paren container (div). Try this:
 * background-image: url(“[http://eblireads.com/wp-content/uploads/2014/01/65253.png&#8221](http://eblireads.com/wp-content/uploads/2014/01/65253.png&#8221););
   
   max-width: 615px; height: 690px; color: white; font-size: 20px; padding: 20px;
 * Of course you will have to tweak it more to get it look nice.
 * I suggest you to use FireFox Inspector to see what styles are affecting the elements:
 * You can activate it with: CTRL+SHIFT+I
 * and select the element you need with the mouse. Also it will let you see the 
   dimensions of those elements.
 *  Thread Starter [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489551)
 * [http://eblireads.com/](http://eblireads.com/) — The mobile version is still 
   messed up (the font runs way off of the DIV.
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489577)
 * Keep experimenting, open FireFox Inspector in mobile view and try to analyze 
   css code, try changing or enabling/disabling certain parameters in the Inspector
   style toolbar to see what happens.
 * It’s business as usual – one will have to work hard to learn things 😉
 *  Thread Starter [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489578)
 * Right on — A plugin has seemed to do the trick.
 * Thanks Tomas.
 *  Theme Author [Tomas Mackevicius](https://wordpress.org/support/users/tomasm/)
 * (@tomasm)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489580)
 * But don’t forget padding, otherwise that box looks strange 😉
 * It should look good to get into the showcase:
 * [http://mtomas.com/363/showcase-tiny-forge-theme-site-mod](http://mtomas.com/363/showcase-tiny-forge-theme-site-mod)
 * :)))
 *  Thread Starter [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * (@peterweinrauch)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489590)
 * Hey Tomas, not sure what you mean about the padding. It seems to make no difference
   on my end.

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

The topic ‘Posts Page Layout’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/tiny-forge/1.6.1/screenshot.png)
 * Tiny Forge
 * [Support Threads](https://wordpress.org/support/theme/tiny-forge/)
 * [Active Topics](https://wordpress.org/support/theme/tiny-forge/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/tiny-forge/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/tiny-forge/reviews/)

 * 15 replies
 * 2 participants
 * Last reply from: [peterweinrauch](https://wordpress.org/support/users/peterweinrauch/)
 * Last activity: [12 years, 4 months ago](https://wordpress.org/support/topic/posts-page-layout/#post-4489590)
 * Status: resolved