Title: Changing Code in Fifteen Plus Theme
Last modified: August 30, 2016

---

# Changing Code in Fifteen Plus Theme

 *  [nic137](https://wordpress.org/support/users/nic137/)
 * (@nic137)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/)
 * I would like to change a few formatting things in my test page [http://cosier.nickeldesigninc.com](http://cosier.nickeldesigninc.com).
 * Change the page header (i.e. home) so the font size is smaller
    Reduce the space
   between the logo and menu Change page background color to white
 * I’ve edited sites before, but am struggling finding where to make these changes
   on this site.

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

 *  [Luke Stacey](https://wordpress.org/support/users/daftduke/)
 * (@daftduke)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218016)
 * Hi there,
 * I think I can help you out:
 * 1. Change the Page Header
 * The page header (home) is a H1 tag – you can either change the font size of all
   H1’s :
 *     ```
       h1, .h1 {
         font-size: ?px;
       }
       ```
   
 * or just the ‘page header’ :
 *     ```
       .container.single-entry-title {
         font-size:  ??px;
       }
       ```
   
 * 2. Reduce the space between the logo and the menu
 * There is some space below the logo for social icons – this is what is creating
   the unwanted gap.
 *     ```
       #social-icons {
          display:  none;
       }
       ```
   
 * 3. Change page background color to white
 * Try this:
 *     ```
       .single #content, .page #content {
         background: #fff;
       }
   
       #primary {
         background: #fff;
       }
       ```
   
 * You can paste this code in your [child theme’s](http://codex.wordpress.org/Child_Themes)
   style.css or in a custom css plugin such as [Simple Custom CSS](https://wordpress.org/plugins/simple-custom-css/).
 * I hope that helps!
 * Luke the Daft Duke
 *  Thread Starter [nic137](https://wordpress.org/support/users/nic137/)
 * (@nic137)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218189)
 * Thank you for the response. Sometime in the next few days, I will be able to 
   jump in and try the suggestions you provided.
 *  Thread Starter [nic137](https://wordpress.org/support/users/nic137/)
 * (@nic137)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218213)
 * Most of the the page content is now updated. Could you help out with a few other
   minor edits?
    -  For some reason, the footer is centered at certain page sizes. As I adjust
      and make my page wider, the content (I’m assuming the container) becomes left
      aligned and the text will break onto two lines. How do I fix this so the footer
      content is always centered within the page? I’d also like to add some white
      space underneath the footer, so it’s not sitting at the bottom of the page/
      window.
       Is there a way to remove the gray line that is in the background?
      Or change it to white, so it’s not so obvious?
 *  [Luke Stacey](https://wordpress.org/support/users/daftduke/)
 * (@daftduke)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218215)
 * Try this:
 *     ```
       #footertext {
          padding-bottom: 20px;
   
       }
   
       #footertext.col-md-7 {
         width:  100%;
       }
   
       #parallax-bg {
         border-bottom: none;
       }
       ```
   
 *  Thread Starter [nic137](https://wordpress.org/support/users/nic137/)
 * (@nic137)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218216)
 * Thank you!
 *  Thread Starter [nic137](https://wordpress.org/support/users/nic137/)
 * (@nic137)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218222)
 * Ok, one last question (I hope). On the homepage, if you adjust your browser width,
   at certain widths, the copy extends left/right past the image. I would like to
   keep the copy underneath the image, either keeping the same left margin, or even
   being indented.
 * I fudged this by I have adding padding, however if I preview the copy in a mobile
   browser, you see one letter per line. So, I need a more mobile-friendly solution
   🙂
 *  [Luke Stacey](https://wordpress.org/support/users/daftduke/)
 * (@daftduke)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218225)
 * I’m certain I understand what you mean but perhaps this will do the trick:
 *     ```
       .entry-content > p {
         margin-left: 9%;
         max-width: 82%;
       }
   
       .entry-content > ul {
         margin-left: 10%;
         max-width: 82%;
       }
       ```
   
 * Failing that you could use media queries to target different screen sizes.
 * I hope that helps 🙂
 * Luke the Daft Duke
 *  Thread Starter [nic137](https://wordpress.org/support/users/nic137/)
 * (@nic137)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218226)
 * It doesn’t seem to do the trick.
 * Also, I moved the menu buttons into the blue bar. Now I can’t seem to delete 
   the original menu bar (under the logo in blue type). I have deleted it from the
   header.php, and checked the full-width-page-template.php. Am I missing another
   spot that it should be deleted from?
 *  Thread Starter [nic137](https://wordpress.org/support/users/nic137/)
 * (@nic137)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218227)
 * I figured out the menu bar question. I knew I was close 🙂
 *  [Luke Stacey](https://wordpress.org/support/users/daftduke/)
 * (@daftduke)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218228)
 * Ok, I’m not sure I really understand what your trying to achieve.
 * I’m not getting one letter per line at mobile size:
 * [Screenshot](http://postimg.org/image/rjmwnlo0d/)
 * Perhaps try reformatting your html in the post editor with div classes so you
   can control each element more precisely?

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

The topic ‘Changing Code in Fifteen Plus Theme’ is closed to new replies.

## Tags

 * [background, color](https://wordpress.org/support/topic-tag/background-color/)
 * [css](https://wordpress.org/support/topic-tag/css/)

 * 10 replies
 * 2 participants
 * Last reply from: [Luke Stacey](https://wordpress.org/support/users/daftduke/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/help-changing-code-in-fifteen-plus-theme/#post-6218228)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
