ScoutingRediscovered
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blank site after functions.php file is changed.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
In reply to: Blank site after functions.php file is changed.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
In reply to: Blank site after functions.php file is changed.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
In reply to: [Hemingway] Remove header except for home page?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
In reply to: centering bottom widgets in Mog ThemeHello! I solved the problem thanks to the help of a user on the CSS Tricks 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
In reply to: centering bottom widgets in Mog ThemeHello! 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!