Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter ScoutingRediscovered

    (@scoutingrediscovered)

    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!

    Thread Starter ScoutingRediscovered

    (@scoutingrediscovered)

    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?

    Thread Starter ScoutingRediscovered

    (@scoutingrediscovered)

    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!

    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!

    Thread Starter ScoutingRediscovered

    (@scoutingrediscovered)

    Hello! 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;
    
    }
    Thread Starter ScoutingRediscovered

    (@scoutingrediscovered)

    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)