Title: ScoutingRediscovered's Replies | WordPress.org

---

# ScoutingRediscovered

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blank site after functions.php file is changed.](https://wordpress.org/support/topic/blank-site-after-functionsphp-file-is-changed/)
 *  Thread Starter [ScoutingRediscovered](https://wordpress.org/support/users/scoutingrediscovered/)
 * (@scoutingrediscovered)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/blank-site-after-functionsphp-file-is-changed/#post-5352866)
 * Viktor,
 * Thank you for suggesting diffnow.com! Using it made me step back, stop panicking,
   and look more carefully at the files. Under careful examination, I found that
   I actually did have the wrong code in the functions.php file. It’s easy to miss
   something and make assumptions when you’re rushing trying to fix a down site!
   I am happy to say that it has been fixed and the sites are live again. Thank 
   you very much for your help!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blank site after functions.php file is changed.](https://wordpress.org/support/topic/blank-site-after-functionsphp-file-is-changed/)
 *  Thread Starter [ScoutingRediscovered](https://wordpress.org/support/users/scoutingrediscovered/)
 * (@scoutingrediscovered)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/blank-site-after-functionsphp-file-is-changed/#post-5352769)
 * Ah, thanks Viktor!
 * I moved it, then moved it back exactly to the same place a few minutes later.
   Still the same.
 * Any suggestions to troubleshoot?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blank site after functions.php file is changed.](https://wordpress.org/support/topic/blank-site-after-functionsphp-file-is-changed/)
 *  Thread Starter [ScoutingRediscovered](https://wordpress.org/support/users/scoutingrediscovered/)
 * (@scoutingrediscovered)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/blank-site-after-functionsphp-file-is-changed/#post-5352765)
 * Alright, I have a back-up tool on my hosting service, and tried running a back-
   up to a few days before the incident. The back-up completed successfully, but
   there is no change in the site. It still is the “White Screen of Death”.
 * Please, any advice would be really appreciated!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Hemingway] Remove header except for home page?](https://wordpress.org/support/topic/remove-header-except-for-home-page/)
 *  [ScoutingRediscovered](https://wordpress.org/support/users/scoutingrediscovered/)
 * (@scoutingrediscovered)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/remove-header-except-for-home-page/#post-5125151)
 * Thank you for that solution. It works well. I only have one problem. My home 
   page is a static front-page that also counts as a page. Is there a way I can 
   make that particular page an exception to the rule? Thank you for your time!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [centering bottom widgets in Mog Theme](https://wordpress.org/support/topic/centering-bottom-widgets-in-mog-theme/)
 *  Thread Starter [ScoutingRediscovered](https://wordpress.org/support/users/scoutingrediscovered/)
 * (@scoutingrediscovered)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/centering-bottom-widgets-in-mog-theme/#post-4034941)
 * Hello! I solved the problem thanks to the help of a user on the [CSS Tricks forums](http://css-tricks.com/forums).
   If anyone’s interested (and for future reference), here is my current code:
 *     ```
       /* Secondary area */
       #secondary{
           margin: 0px auto;
           padding: 2em 0;
           border-top: 0px rgb(170, 170, 170);
           width: 100%;
           max-width: 720px;
       }
   
       #search{
           text-align: center;
           float: none;
           width: auto;
           margin-bottom: 1.5em;
       }
   
       aside.widget{
   
           float: left;
           margin: 0px auto;
           width: 33.33%;
           height: auto;
   
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [centering bottom widgets in Mog Theme](https://wordpress.org/support/topic/centering-bottom-widgets-in-mog-theme/)
 *  Thread Starter [ScoutingRediscovered](https://wordpress.org/support/users/scoutingrediscovered/)
 * (@scoutingrediscovered)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/centering-bottom-widgets-in-mog-theme/#post-4034764)
 * Hello! After tweaking some CSS setting, I found I could center the element by
   changing to “margin: 0 auto;”
 * However, I still haven’t been able to get the three widgest side-by-side and 
   centered.
 * It seems that “float: left;” makes them line up side-by-side but also pushes 
   the element to the left of the page. Changing it to “float: none” makes it center,
   but doesn’t line the widgets up side-by-side.
 * Here is my current CSS from main.css:
 *     ```
       /* Secondary area */
       #secondary{
       	margin: 0 auto;
       	padding: 2em 0;
       	border-top: 0px solid #AAA;
       }
   
       #search{
       	text-align: center;
       	float: none;
       	width: auto;
       	margin-bottom: 1.5em;
       }
   
       aside.widget{
   
       	float: none;
       	margin: 0 auto;
       	width: 13em;
       	padding: 5px;
   
       }
       ```
   
 * If anyone could help I’d really appreciate it!

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